Graph B
Graph A
Hi Everyone,
I want to create a CIF graph with an enlarged y-axis as shown in the inset apixaban-warfarin graph.
The code below produced the second CIF graph attached. How do create an inset graph with an enlarged y-axis or create just a single graph with an enlarged yaxis. Thanks.
PROC LIFETEST DATA=SOURCE.BIGDATA OUTCIF=ATRISK MAXTIME=14 plots=cif(test);
TIME PERIOD * EVENTCLASS(0)/EVENTCODE=1;
STRATA CLASS;
ODS OUTPUT CIF=CIFDATA;
RUN;
I use SAS enterprise 9.4. Do I need to repost to another forum?
https://blogs.sas.com/content/graphicallyspeaking/2017/09/18/advanced-ods-graphics-inserting-graph-g...
https://blogs.sas.com/content/graphicallyspeaking/2012/01/26/nested-graphs/
Here is an example:
ods listing gpath="%sysfunc(pathname(work))" image_dpi=300 style=htmlblue;
ods graphics / reset=all imagename='regression' ;
/*produce a inset/nested graph*/
proc sgplot data=sashelp.class noautolegend;
reg x=weight y=height/clm;
xaxis display=none;
yaxis display=none;
run;
%sganno
data sganno;
%SGIMAGE(IMAGE="%sysfunc(pathname(work))\regression1.png",ANCHOR="topleft",BORDER="TRUE",DRAWSPACE="wallpercent" ,width=40,x1=1,y1=99)
run;
/*plot inset graph*/
proc sgplot data=sashelp.class sganno=sganno noautolegend;
scatter y=weight x=height / group=sex datalabel=name;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.