I am generating scatter plot with xerrorlower and yerrorlower (ranges) . How to fill up with color low to high .
Note: first line (range) is base for remaining records.
For you reference I am attaching one photo.
You can use the COLORRESPONSE= option on the SCATTER statement to color the markers and bars according to some variable in your data set. In the following, I color by using the mean value:
data confidence;
input Var $ 1-2 Mean LowerCI UpperCI;
datalines;
X1 1.2 0.1 4.2
X2 1.2 0.1 4.2
X3 50.0 48.7 60.3
X4 6.0 5.0 7.3
X5 6.1 5.0 7.3
X6 16.7 0.4 64.1
X7 66.4 55.2 69.6
;
proc sgplot data=confidence;
scatter y=Var x=mean / xerrorupper=upperci xerrorlower=lowerci colorresponse=mean
markerattrs=(symbol=CircleFilled) errorbarattrs=(thickness=2);
yaxis grid;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.