graph data panel
Posted: Mon Aug 18, 2014 7:51 am
by felix.casares
im trying to graph a data panel for 5 of 14 time serie, i want to graph only this 5 series with commands like graph line x if company="oil texas","petrolium", "interoceanic" etc.
Please i hope your help, tks.
Re: graph data panel
Posted: Mon Aug 18, 2014 7:58 am
by EViews Gareth
Code: Select all
smpl if @inlist(company, "oil texas petrolium interoceanic")
show x.line
I couldn't tell whether "oil texas" was a single value or not. If so, you'll have to do:
Code: Select all
smpl if company="oil texas" or company = "petrolium" or company = "interoceanic"
show x.line
Re: graph data panel
Posted: Mon Aug 18, 2014 8:34 am
by felix.casares
Tks alot it works
Code: Select all
smpl if @inlist(company, "oil texas petrolium interoceanic")
show x.line
I couldn't tell whether "oil texas" was a single value or not. If so, you'll have to do:
Code: Select all
smpl if company="oil texas" or company = "petrolium" or company = "interoceanic"
show x.line