Hi,
I am trying to make a multiple lines plot for each month with a pretty big data with this code:
proc sgplot data=dataname; series x=Hour y=Load / group=Month; title 'Multiple Lines Plot (Months)'; run;
but I get this:
And I just want one average line for each month.
Try one of the summarize task or query builder.
http://www2.sas.com/proceedings/sugi30/179-30.pdf
Proc means:
https://github.com/statgeek/SAS-Tutorials/blob/master/proc_means_basic.sas
You have to pre-summarize your data and then plot the averages.
@matt23 wrote:
Hi,
I am trying to make a multiple lines plot for each month with a pretty big data with this code:
proc sgplot data=dataname; series x=Hour y=Load / group=Month; title 'Multiple Lines Plot (Months)'; run;but I get this:
And I just want one average line for each month.
Sorry for the dumb question but can you give me an example of how to do it?
Try one of the summarize task or query builder.
http://www2.sas.com/proceedings/sugi30/179-30.pdf
Proc means:
https://github.com/statgeek/SAS-Tutorials/blob/master/proc_means_basic.sas
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.