'line continuation character: the underscore "_" as the last character on the line to join the multiple lines
However, in series proc adjust, it use underscore to "Repeats previous non-missing value", and it is at the end of line
in the following test code, data from http://www.eviews.com/Learning/AllTutorials.zip
Code: Select all
%pt = "Z:\2013\DL\EV8\SeriesGroups\"
'%wf = %pt + "SeriesGroups-Data.wf1"
%wf = %pt + "Data.wf1"
wfopen %wf
'Editing, Documenting, Displaying Series
'ADJUST
pageselect Timeseries
'ex1
edit_series.fill 1,3
edit_series(3) = 5 'LHS, not lead/lag
'ex8
smpl 1981q3 1983q3
edit_series.adjust =5..20* 'log-linear
smpl @all
'ex9
smpl 1980q1 1984q3
edit_series.adjust _. 'this seems not conform the Obj-Ref
'edit_series.adjust ._ 'invalid
smpl @all
