- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 03-29-2011 02:18 PM
(1086 views)
Thanks in advance
colaxis integer min=0.5 max=1 label='Length95ci);
I'd like to set up Rowaxis as 0.5--1 stead of 0--1, but didn't know how?
as:
proc sgpanel data=file;
panelby &peme2 &peme1 / layout=lattice /* ONEPANEL */ novarname;
scatter x=MM y=l95CI_mean / group=METHOD markerattrs=(size=10);
refline .6 .8 / axis=Y lineattrs=(pattern=dash);
refline .2 .4 / axis=X lineattrs=(pattern=dash);
rowaxis integer min=0 max=0.5 label='Fraction_MM';
colaxis integer min=0.5 max=1 label='Length95ci)';
keylegend / title=" " noborder;
run;
thanks again.
Alex
colaxis integer min=0.5 max=1 label='Length95ci);
I'd like to set up Rowaxis as 0.5--1 stead of 0--1, but didn't know how?
as:
proc sgpanel data=file;
panelby &peme2 &peme1 / layout=lattice /* ONEPANEL */ novarname;
scatter x=MM y=l95CI_mean / group=METHOD markerattrs=(size=10);
refline .6 .8 / axis=Y lineattrs=(pattern=dash);
refline .2 .4 / axis=X lineattrs=(pattern=dash);
rowaxis integer min=0 max=0.5 label='Fraction_MM';
colaxis integer min=0.5 max=1 label='Length95ci)';
keylegend / title=" " noborder;
run;
thanks again.
Alex
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I believe the INTEGER option is what is preventing you from seeing your decimal ranges.
Dan
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I got you. thanks a millon.