/****************************************************************************** * Programme : Exemple de documentation pour PROC NPAR1WAY * Reference : EXEMPL1E0D * Source : https://www.wearecas.eu/en/sampleCode/EXEMPL1E0D ******************************************************************************/ /* --- BLOC 1 --- */ data React; input Stim Time @code_sas/@TEMPLATE.sas; datalines; 1 1.94 1 1.94 1 2.92 1 2.92 1 2.92 1 2.92 1 3.27 1 3.27 1 3.27 1 3.27 1 3.70 1 3.70 1 3.74 2 3.27 2 3.27 2 3.27 2 3.70 2 3.70 2 3.74 ; /* --- BLOC 2 --- */ proc npar1way hl alpha=.02 data=React; class Stim; var Time; exact hl; ods select WilcoxonScores HodgesLehmann; run;