On Sun, 29 Nov 2009, Henrique wrote:
When I open Rsrc file (inside/Users/<username>/.gretl/) I found
these
commands:
# load data from gretl
gretldata <- read.table("/Users/henrique/.gretl/Rdata.tmp", header=TRUE)
gretldata <- ts(gretldata, start=c(1950, 1), frequency = 4)
I think the command is incomplete. The command "attach(gretldata)" is
missing. Am I right?
No, "attach" doesn't work for ts() objects.
At the R prompt, type:
gretldata
It should be there.
Allin.