Wednesday, September 16, 2009

Creating a Plot with labelled axis and title in SAS

title 'Autocorrelated Time Series';
proc sgplot data=a noautolegend;
series x=time y=y / markers;
reg x=time y=y/ lineattrs=(color=black);
run;


From SAS documentation

3 comments:

Anonymous said...
This comment has been removed by a blog administrator.
Anonymous said...
This comment has been removed by a blog administrator.
Anonymous said...
This comment has been removed by a blog administrator.