ran the following code:
proc template;
define statgraph mypraphs.pie;
begingraph;
layout region;
piechart category=type / start=90 centerfirstslice=1;
endlayout;
endgraph;
end;
run;
ods graphics / reset imagemap;
proc sgrender template=mygraphs.pie data=sashelp.cars;
run;
ods graphics /reset;
proc freq data=sashelp.cars;
tables type;
run;
and getting ERROR: Unable to restore 'mygraphs.pie' from template store!
I am nw to SAS. Can anyone help!
There is a spelling mistake in the second line of code:
define statgraph mypraphs.pie;
thanks buddy!!
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.