Hey guys,
I can't seem to find this anywhere online, but R directions are out there so i figured there must exist a way for SAS to do it too.
Basically I have 2 quantitative variables and one classification variable. I am looking to be able to make a plot of the means of both Q-variables and their respective confidence intervals for each class. Is there something else these are called? Its basically a scatter plot but I cant seem to get it to work correctly (Below is what I am trying to make)
Any direction is appreciated.
Thanks,
Austin
proc sgplot data=mydata;
scatter x=meanX y=MeanY / XERRORLOWER=lowerX XERRORUPPER=upperX
YERRORLOWER=lowerY YERRORUPPER=upperY DATALABEL=FishName;
run;
proc sgplot data=mydata;
scatter x=meanX y=MeanY / XERRORLOWER=lowerX XERRORUPPER=upperX
YERRORLOWER=lowerY YERRORUPPER=upperY DATALABEL=FishName;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.