🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-17-2015 11:13 AM
(3818 views)
Hi,
How do I do a plot that looks like this?
Any sample code would be highly appreciated.
Many thanks in advance.
YiFan
simple dot plot with connecting lines for paired samples:
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you have a variable which identifies each pair then something like
proc sgplot data=have noautolegend nocycleattrs;
series x=treatment y=glucose / group=Pairidvariable markers Markerattrs= (symbol=CircleFilled)
;
run;
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you have a variable which identifies each pair then something like
proc sgplot data=have noautolegend nocycleattrs;
series x=treatment y=glucose / group=Pairidvariable markers Markerattrs= (symbol=CircleFilled)
;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
tyvm 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Here's one way using SGPLOT. The key thing is to get your data in the right format.
data have;
call streaminit(20);
do i=1 to 10;
glucose=rand('normal', 120, 10); A=10; output;
glucose=rand('normal', 120, 10); A=30;
output;
end;
run;
proc sgplot data=have;
series x=A y=glucose/group=i markers MARKERATTRS=(Symbol=circlefilled);
xaxis values=(0 to 40 by 10);
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
tyvm 🙂