I have two 'data frames' that I'd like to append into a single csv file. I know that one can use write. table to append them, but write.table appends them vertically. Is there a way that I can append them horizontally?
Edit: The two data sets are 7x2 (which is constant), and Sx7 where S is variable. S can be very large, potentially up to 1000 or more.
Edit2: I want them to be arranged as with the Sx7 first, followed by a column of space, then the 7x2. I don't want them to be transposed as S can be very large and I'd like to be able to read them in LibreOffice/Excel.