Résultats de recherche

253 résultats trouvés Page 7 / 26
Code SAS
Voir

Rapport ODS HTMLPanel avec PROC PRINT et PROC GCHART

/* start the panelling */ ods tagsets.htmlpanel event = panel(start); title 'First proc Print'; proc print data=sashelp.class;run; title 'Second proc Print'; proc print data=sashelp.class;run; title 'Third proc Print'; proc print data=sashelp.class;run; /* Stop the current Panel */ ods tag...

Code SAS
Voir

Rapport ODS HTMLPanel avec PROC PRINT et PROC GCHART

/* Change the panel settings */ ods tagsets.htmlpanel options(panelcolumns='2' embedded_titles='no'); /* this bygroup get's a panel of it's own. */ title ; proc sort data=sashelp.class out=foo; by age; run; proc gchart data=foo; by age; h...

Code SAS
Voir

Rapport ODS HTMLPanel avec PROC PRINT et PROC GCHART

/* start a new, semi-automatic panel */ ods tagsets.htmlpanel event = panel(start); title 'Fourth proc Print'; proc print data=sashelp.class;run; title 'Fifth proc Print'; Footnote 'End of Fifth proc Print'; proc print data=sashelp.class;run; ods tagsets.htmlpanel event = panel(finish);

Code SAS
Voir

Classement et sélection des N observations par groupe avec PROC RANK

proc sort data=sashelp.class out=class; by sex; run;

Code SAS
Voir

Classement et sélection des N observations par groupe avec PROC RANK

%rankbyvar(sashelp.class,work.rank3,sex,weight,n=7);

Code SAS
Voir

Classement et sélection des N observations par groupe avec PROC RANK

%rankbyvar(sashelp.class,work.rank4,sex,weight,order=C);

Code SAS
Voir

Exportation de données SASHELP.CLASS vers CSV

/********************************************************************** * PRODUCT: SAS * VERSION: 9.1 * CREATOR: External File Interface * DATE: 11APR09 * DESC: Generated SAS Datastep Code * TEMPLATE SOURCE: (None Specified.) **********************************...

Code SAS
Voir

Régénération de graphes de diagnostic

ods select none; proc mcmc data=sashelp.class nmc=50000 thin=5 outpost=classout seed=246810; parms beta0 0 beta1 0; parms sigma2 1; prior beta0 beta1 ~ normal(0, var = 1e6); prior sigma2 ~ igamma(3/10, scale = 10/3); mu = beta0 + beta1*height; model weight ~ normal(mu, var = sig...

Code SAS
Voir

Macro Testmakro1

data test; set sashelp.class; run;

Code SAS
Voir

Rapport avec variable ACROSS et pourcentages calculés

title1 'Summary Lines with a Percentage'; title2 'Report with an ACROSS Variable'; proc report data=sashelp.class(where=(age in(12,13))) out=out11_4c nowd; column age sex,(n percent) counter; define age / group; define sex / across 'Gender' format=$gender.; define ...