Graphics Programming

Data visualization using SAS programming, including ODS Graphics and SAS/GRAPH. Charts, plots, maps, and more!
BookmarkSubscribeRSS Feed
deleted_user
Not applicable
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
2 REPLIES 2
DanH_sas
SAS Super FREQ
I believe the INTEGER option is what is preventing you from seeing your decimal ranges.

Dan
deleted_user
Not applicable
I got you. thanks a millon.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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
  • 1087 views
  • 0 likes
  • 2 in conversation