« Political Animal / Kevin Drum | Main | ROC Dominant Score Cutoff Strategies »

December 11, 2004

SAS percentiles not automatically calculated ?

SAS tip: How do I obtain percentiles not automatically calculated ?

proc univariate data=hsb noprint;
var write;
output out=percentiles1 pctlpts=33 45 80 to 90 by 2 pctlpre=P;
run;
proc print data=percentiles1;run;

Posted by omor at December 11, 2004 11:43 PM

Comments

Post a comment

! Comment registration is required but no TypeKey token has been given in weblog configuration!