- Specify that your results appear both as a listing and as HTML
output stored in a permanent location. Select the style of your choice
and specify a browser for viewing HTML output (choose the internal
browser if available).
- Copy the following program and paste it into the Program Editor
window (or issue the command
copy sashelp.oltutor..source ).
proc tabulate data=clinic.admit;
class sex;
var height weight;
table sex*(height weight),mean;
run;
- Submit the program and view the PROC TABULATE results in the Output
window.
- View the HTML version of the PROC TABULATE results.
- Check the folder you specified and verify that the HTML file was
created.
Return here and select Next.
|
|