Page 1 of 1

Defining a series

Posted: Tue Jan 28, 2020 5:44 pm
by Elderfield.A
Hi,

Does the eviews have the capability to define a series object as below:

Code: Select all

smpl 2019q3 2020q2 series x = (100,200,300, 400)
Essentially, I want to set the sample and define the series as a vector with each row representing time.

Thanks

Adam

Re: Defining a series

Posted: Tue Jan 28, 2020 5:53 pm
by EViews Gareth
Not in quite the same way, but you can do this:

Code: Select all

series x x.fill(o="2019q3") 100,200,300,400
(which doesn't require the sample being set)

or:

Code: Select all

smpl 2019q3 2020q2 series x x.fill(s) 100,200,300,400

Re: Defining a series

Posted: Tue Jan 28, 2020 5:58 pm
by Elderfield.A
Perfect - thank you!