Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ods excel file='/home/u63376027/Export/Histograms.xlsx' style=seaside;
- title 'Population Histogram';
- proc sgplot data=STPSAMP.STPEURO;
- histogram pop;
- density pop/ type=normal;
- run;
- title 'Growth Rate Histogram';
- proc sgplot data=STPSAMP.STPEURO;
- histogram growth;
- density growth/ type=normal;
- run;
- title 'Birth Rate Histogram';
- proc sgplot data=STPSAMP.STPEURO;
- histogram birth;
- density birth/ type=normal;
- run;
- ods excel close;
- _______________________________________________________________
- /* Customize Histoplot with PERCENT7.2 format and grid*/
- ods excel file='/home/u63376027/Export/Growth_Histograms.xlsx' style=seaside;
- proc sgplot data=STPSAMP.STPEURO;
- histogram growth;
- density growth/ type=normal;
- xaxis grid values= (-0.04 to 0.04 by 0.001);
- run;
- ods excel close;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement