I am trying to write my first html code for SAS using ODS and I"m clearly missing something. I have some data that I want to publish that has, as far as this is concerned, three important columns, metal (the predictor), data (the response), and name (a separator for different models. One model per name, one boxplot per name) stored in the dataset "final" In another data set, "model", which is actually a model output, there is a lower confindence level (LCL) of interest to denote parameters (names) of potential interest. I keep getting errors that seemed to 'go away' partially when I added more body statements with different names. ------- ods html body ="/public/ant/testbody.html" contents= "/public/ant/testcontent.html" frame = "/public/ant/testframe.html"; title "Table of Total Rsquare Accounted for by Metal"; /*Outputs full list of parameters with LCLs listed*/ proc print data=model; run; title "Parameters with Potential Differences in Metal"; ods html body ="/public/ant/testbody2.html"; /*Outputs those parameters of interest*/ data modelsub; set model; if LCLtotal > 0.1; run; proc print data= modelsub; var name; run; ods html body ="/public/ant/testbody3.html"; title "BoxPlots for Shared Graphs"; proc boxplot data= final; plot data*metal; by name; run; quit; ods html close; ods graphics off; -------- I run into trouble with the boxplots. It says: ERROR: Insufficient authorization to access /sas/config/Lev1/SASApp/boxplo77.png. ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/boxplo77.png. for each boxplot it attempts to graph. It used to say the same thing until I added separate body statements. Please help this html and sas noob. Thanks!
... View more