libname learn 'C:\SAS data and program\data\data set used in Textbook\SAS data set';
ods html file = 'C:\SAS data and program\data\data set used in Textbook';
title "Listing of TEST_SCORES";
proc print data = learn.test_scores;
title2 "Sample of HTML Output - all defaults";
id ID;
run;
title "descriptive Statistics";
proc means data = learn.test_scores n mean min max;
var Score1-Score3;
run;
ods html close;
information of log :
236 libname learn 'C:\SAS data and program\data\data set used in Textbook\SAS data set'; NOTE: Libref LEARN refers to the same physical library as TMP1. NOTE: Libref LEARN was successfully assigned as follows: Engine: V9 Physical Name: C:\SAS data and program\data\data set used in Textbook\SAS data set 237 ods html file = 'C:\SAS data and program\data\data set used in Textbook'; NOTE: Writing HTML Body file: C:\SAS data and program\data\data set used in Textbook ERROR: A component of C:\Users\LIAODO~1\AppData\Local\Temp\SAS Temporary Files\_TD21160_DESKTOP-VL03550_\C:\SAS data and program\data\data set used in Textbook is not a directory. ERROR: No body file. HTML output will not be created. 238 title "Listing of TEST_SCORES"; 239 proc print data = learn.test_scores; 240 title2 "Sample of HTML Output - all defaults"; 241 id ID; 242 243 run;
WARNING: No output destinations active. NOTE: There were 3 observations read from the data set LEARN.TEST_SCORES. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.01 seconds
244 245 246 title "descriptive Statistics"; 247 proc means data = learn.test_scores n mean min max; 248 var Score1-Score3; 249 run;
WARNING: No output destinations active. NOTE: There were 3 observations read from the data set LEARN.TEST_SCORES. NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.01 seconds
please give me a help , thank you .
... View more