Hi,
I would like to create a graph showing that my CO2flux_h and CO2flux_t response variables together.
I tried to create it automatically by using "tasks- stack by" options but it did not work.
Is there any code to create it?
I am adding my data set as an attachment.
Thanks,
Suna
thank you!
thank you @Reeza for the link to Robs samples. Bookmarked for my future experiences.
Except you should learn SGPLOT. Most examples are SAS Graph, which is also what EG uses. SGPLOT is easier to use and better quality graphics, but there’s a lot of old SAS Graph code out there so it’s easier to find examples.
Heres some SGPlot Examples.
http://support.sas.com/sassamples/graphgallery/PROC_SGPLOT.html
Hi I tried to use this code ;
goptions device=png;
goptions noborder;
goptions gunit=pct htitle=6 ftitle="albany amt/bold" htext=4.25 ftext="albany amt/bold";
goptions ctext=gray33;
axis1 label=('spacing') offset=(8,8);
axis2 label=(a=90 'CO2flux') order=(0 to 12 by 1) minor=(number=3) offset=(0,0);
pattern1 v=solid color=cx9999ff; /* light blue */
pattern2 v=solid color=cx993366; /* purplish */
pattern3 v=solid color=cxffffcc; /* pale yellow */
title1 ls=1.5 "Respiration";
title2 "Compares the contribution of Rh to Rt";
title3 "to a total across months";
proc gchart data=mydata.mt1;
vbar month / discrete type=mean sumvar=CO2flux nolegend
subgroup=flux_type
autoref clipref cref=graycc
maxis=axis1 raxis=axis2
coutline=black
width=8 space=3
des='' name="&name";
run;
but it just adds my flux_types which are Rh(heterotraphic respiration) and Rt( total respiration) together(it sums Rh and Rt,and results in graph). I meant I want to see Rh CO2flux inside of Rt CO2flux. How can I do this?
I meant I want to see Rh CO2flux inside of Rt CO2flux. How can I do this?
No idea of what that means. Which of the graphs on that page were you trying to create, or what does that look like? and what does your data look like? If you need help with the code please provide sample data or use sashelp.cars in your attempt.
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.