options linesize=80 nonumber nodate formdlim='-'; /* Pas d'accent dans le fichier de donnees Le nom des variables doit être moins de 8 caractères ou il sera tronqué. */ libname apple spss 'r:\Formations\Sas\projet_AVQ\data.por' ; run; data donnees ; set apple._first_ ; run ; proc print data= donnees; run; proc freq data = donnees ; tables alimenta * alimen_1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables urinaire * urinai_1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables eliminat * elimin_1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables habillem * habill_1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables locomoti * locomo_1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables bain1 * bain2 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run; proc freq data = donnees ; tables soins_pe * soins__1 / agree (wt = fc ) nopercent nocol norow; test kappa wtkap ; run;