Page 1 of 1
Seasonal graph variance
Posted: Wed May 26, 2021 6:13 pm
by miorinnovo
The seasonal graph gives the average value for a series in each month/quarter. Is there a simple way to see the variance or standard deviation of those months/quarters?
Thanks
Re: Seasonal graph variance
Posted: Wed May 26, 2021 6:23 pm
by EViews Gareth
Code: Select all
show @meansby(y, @month) @stdevsby(y, @month)
Re: Seasonal graph variance
Posted: Wed May 26, 2021 6:31 pm
by miorinnovo
That’s awesome. Thanks. But what if I want the standard deviations for only a sub sample? With the chart I can just change the sample and the mean changes. With this code when I change the sample and run again it gives the same result.
Re: Seasonal graph variance
Posted: Wed May 26, 2021 7:28 pm
by EViews Gareth
Enter the sample you want as a third argument.
Code: Select all
@stdevsby(y, @month, "2000 2020")