BookmarkSubscribeRSS Feed
ari
Quartz | Level 8 ari
Quartz | Level 8

I am trying to make  time series plot of few subjects grouped by dose.

The subejcts are colored according to the group but the line connecting the data points looks strange as shown in graph below.

Ideally I want the data points for each subjects connected per subject (but colored per the grouping variable) rather than the grouping variable.

Any solution to this issue ?

 

 

code:


proc sgplot data = data1;
series x = time y = value/
markers
markerattrs = (symbol = circlefilled)
group = dosec
lineattrs = (thickness = 2);
run;

2 REPLIES 2
ballardw
Super User

Try sorting the data by the Group variable and then the xaxis variable.

Series plots often try to connect points by order in the data set which often is not the order you want the graph to be drawn.

ari
Quartz | Level 8 ari
Quartz | Level 8

Thanks but its still doesnt solve the grouping issue. the data points are not connected per subject. 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 694 views
  • 0 likes
  • 2 in conversation