Am 07.04.2016 um 19:30 schrieb Allin Cottrell:
On Thu, 7 Apr 2016, Sven Schreiber wrote:
> R? Like I would with a simple text file? But then what's the
special R
> format here?
No, it's not a dataframe, but it's text output in a format that R likes.
<hansl>
open data4-10
store somedata.R
foreign language=R
somedata <- read.table("somedata.R", header=TRUE)
is.data.frame(somedata)
end foreign
</hansl>
Well OK, but how about this then (".R" -> ".csv"):
<hansl>
open data4-10
store somedata.csv
foreign language=R
somedata <- read.table("somedata.csv", header=TRUE)
is.data.frame(somedata)
end foreign
</hansl>
Gives the same for me, so from that perspective the R option to the
"store" command (either via a .R extension or via "--gnu-R") looks
redundant.
thanks,
sven