Reputation: 399
I am trying to create a scatter plot in SAS. I used the following code below;
proc sgplot data = data1;
series y = data_points x = Date;
run;
However the code creates a scatter plot where the data_points are linked together by a line.
I do not want the data_points to be linked together at all.
How do I solve this problem please?
Upvotes: 1
Views: 68
Reputation: 21294
Change SERIES to SCATTER, that's the only change you need.
Upvotes: 1