4279 data infosx modeltest;
4280 set infos1;
4281 alea=ranuni(0);
4282 if 0<alea<0.75 then output infosx; /* car on veut 75% ds chaque table*/
4283 else output modeltest;
4284 run;
NOTE: There were 9715 observations read from the data set WORK.INFOS1.
NOTE: The data set WORK.INFOSX has 7294 observations and 51 variables.
NOTE: The data set WORK.MODELTEST has 2421 observations and 51 variables.
NOTE: L'étape DATA used (Total process time):
real time 0.04 secondes
cpu time 0.04 secondes
4285 ods results on;
4286 ods listing;
4287 ODS OUTPUT CLParmWald = tableSAS ;
4288 proc logistic data=infosx plots=roc(id=prob)PLOTS(MAXPOINTS=NONE) ;
4289 class
4290 dcapitaltr
4291 dAnciennete_CFK2
4292 /param=ref ;
4293 model ctxpc(event="OUI")=
4294 dcapitaltr
4295 dAnciennete_CFK2
4296 / CLPARM=WALD rsquare lackfit ctable corrb ;
4297 output out=out predicted=proba1;
4298 score data= modeltest out= modelscore ;
4299 run;
NOTE: PROC LOGISTIC is modeling the probability that CTXPC='OUI'.
NOTE: Convergence criterion (GCONV=1E-8) satisfied.
NOTE: The data set WORK.TABLESAS has 10 observations and 5 variables.
NOTE: There were 7294 observations read from the data set WORK.INFOSX.
NOTE: The data set WORK.OUT has 7294 observations and 53 variables.
NOTE: The data set WORK.MODELSCORE has 2421 observations and 55 variables.
NOTE: PROCEDURE LOGISTIC used (Total process time):
real time 2.05 secondes
cpu time 0.73 secondes
4300 proc freq data=modelscore;
4301 table F_CTXPC*I_CTXPC;
4302 run;
NOTE: There were 2421 observations read from the data set WORK.MODELSCORE.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.03 secondes
cpu time 0.01 secondes
Partager