Skip to content
Back to formatted view

Raw Message

Message-ID: <4B01B268.2000001@ucalgary.ca>
Date: 2009-11-16T20:13:28Z
From: Peter Ehlers
Subject: Writing a data frame in an excel file
In-Reply-To: <26378240.post@talk.nabble.com>

anna_l wrote:
> Hello, I am having trouble by using the write.table function to write a data
> frame of 4 columns and 7530 rows. I don??t  know if I should just use a
> sep="\n" and change the .xls file into a .csv file. Thanks in advance
> 
> -----
> Anna Lippel
> new in R so be careful I should be asking a loooooooot of questions!:teeth:

Excel can read CSV files, so why not just use either
write.csv() or write.table() with sep=","?

  -Peter Ehlers