Page 1 of 1

simple question about @mean(x[,s])

Posted: Sun Jan 26, 2014 5:35 am
by mmc23
hi, I have simple question
I have 144 obs monthly, I would like to claculate just mean for simple 1949m01 1955m12
when I use scalar m=@mean(x, "1949m01 1955m12") Error message "Too many Arguments"
can you help me please.

Re: simple question about @mean(x[,s])

Posted: Sun Jan 26, 2014 8:17 am
by EViews Gareth
Use:

Code: Select all

smpl 1949 1955 scalar m = @mean(x)

Re: simple question about @mean(x[,s])

Posted: Sun Jan 26, 2014 8:56 am
by mmc23
thanks a lot.