Search Results

158 résultats trouvés Page 3 / 16
Code SAS
Voir

Sans titre

This script illustrates the use of PROC PRINT to display data and PROC TRANSPOSE to pivot rows and columns of the SASHELP.CLASS table.

Code SAS
Voir

ODS HTMLPanel Report with PROC PRINT and PROC GCHART

This SAS script generates a panel-structured HTML report using ODS TAGSETS.HTMLPANEL. It features multiple PROC PRINT outputs and a horizontal bar chart generated by PROC GCHART, all based on the SASHELP.CLASS table.

Code SAS
Voir

Display class data filtered by gender

Title "Display class data for &gender"; proc print data=sashelp.class; where sex="&gender"; run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Summary data = sashelp.class Print; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Means data = sashelp.class; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Summary data = sashelp.class Print; Var Age Height; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Means data = sashelp.class; Var Age Height; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Summary data = sashelp.class Print; Var Age Height; Class Sex; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Means data = sashelp.class; Var Age Height; Class Sex; Run;

Code SAS
Voir

Comparing PROC SUMMARY and PROC MEANS

Proc Means data = sashelp.class; Class Sex; Run;