On Thu, 7 Apr 2016, Sven Schreiber wrote:
Hi,
I've saved data like this:
store somedata.R --gnu-R
But it doesn't seem to be a R dataframe format. How do I load it
into 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>
Allin