I have a plot of time vs average height. The plot displays by 6 line due to the group (district). How do add a trend line given the group? is it something I have to do prior to plotting?
This is my code:
````
title 'Average height (by district)';
proc sgplot data=height;
series x=date y=mean_height / group=district legendlabel="original" ;
xaxis label='Date';
yaxis label='Average';
run;
```
"trend line" can have any one of several meanings and you do not specify exactly what trend you mean
Here's how to obtain one such trend line — add a REG statement into PROC SGPLOT with the GROUP= option. This could possibly create a very cramped and hard to read plot, but I leave that up to you to decide.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.