Page 1 of 1

Graph updating

Posted: Wed May 09, 2012 10:25 am
by gio.ortolani
Hi guys,

I have one daily page and a monthly one in my workfile, and in the second one I have two series linked with the daily data and merged by "last". I'm programming the update of two graphs on the monthly page and I need them to be plotted at "workfile frequency", but I don't know which command I must use. With this

Code: Select all

pageselect monthly smpl 1999.01 {%data} graph g1.line(t=g01_final) FINAL g1.setupdate(m) g1.options +legend g1.name(1) Final data delete g01_final rename g1 g01_final
EViews plots at "native frequency", but I don't want this. How can I change it automatically?

Thanks for any help!

Re: Graph updating

Posted: Wed May 09, 2012 10:30 am
by EViews Gareth

Code: Select all

graph g1.line(t=g01_final, wf) FINAL

Re: Graph updating

Posted: Wed May 09, 2012 11:04 am
by gio.ortolani
Thank you! It has worked :D