- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I would like to output a histogram with the normal density curve and the qqplot for a given data. With the following code, I can output the histogram and qqplot, but the histogram does not have the normal density curve. The normal density curve is included if the output is in html, BUT if the output is in pdf, it is not included. Does anyone know what is missing in my code? Thank you.
%LET path1= C:\Desktop\output1.pdf;*/output;
ods pdf file="&path1" NOGFOOTNOTE STARTPAGE=yes pdftoc=2 contents=yes style=printer bookmarklist=hide ;
data new;
input y @@;
datalines;
23 34
24 32
23 32
22 23
24 34
25 45
26 12
27 23
28 25
23 27
24 23
24 24
;
run;
ods select histogram qqplot ;
proc univariate data=new ;
histogram y/ grid normal( mu=est sigma=est color=red w=2.5) name='histogram' vscale=proportion;
qqplot y / normal( mu=est sigma=est color=red) name='qqplot' contents="" description="";
run;
ods pdf close;
By the way, I get this error:
ERROR: Requested function is not supported.
ERROR: Unable to process the graph.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'm not an expert on the PDF destination, but this works for me when I get rid of all your options and just use:
ods pdf file="&path1";
Do you get any errors if you delete the options? Also, what version of SAS?
%put &SYSVLONG; /* look in SAS log for answer */
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
How are you running this program? Enterprise Guide? SAS Studio? SAS on your local PC?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'm not an expert on the PDF destination, but this works for me when I get rid of all your options and just use:
ods pdf file="&path1";
Do you get any errors if you delete the options? Also, what version of SAS?
%put &SYSVLONG; /* look in SAS log for answer */
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It worked. But I did not remove all options. I just removed the "style=printer" option. Thanks for your help!