685 DATA CAPDVFF2019;
686 INPUT PD$ V$ F$ Rep DSL AUDPC rAUDPC;
687 cards;
NOTE: SAS went to a new line when INPUT statement reached past the end of a line.
NOTE: The data set WORK.CAPDVFF2019 has 144 observations and 7 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
833 run;
NOTE: Writing HTML Body file: sashtml1.htm
834 PROC glimmix DATA=CAPDVFF2019 plots=pearsonpanel;
835 CLASS PD V F;
836 MODEL DSL = PD V F PD*V PD*F V*F PD*V*F/DDFM=KENWARDROGER;
837 RANDOM Rep ;
838 lsmeans PD V F PD*V PD*F V*F PD*V*F/pdiff adjust=tukey lines;
839 run;
NOTE: With DDFM=SATTERTHWAITE or DDFM=KENWARDROGER, unadjusted p-values in tests are based on the
degrees of freedom specific to that comparison. P-values that are adjusted for
multiplicity, however, are by default based on the denominator degrees of freedom for the
Type III test of the fixed effect. If you specify the ADJDFE=ROW option in the LSMEANS or
LSMESTIMATE statement, the adjusted p-values take into account the row-wise degrees of
freedom.
NOTE: Convergence criterion (ABSGCONV=0.00001) satisfied.
ERROR: LINES display is not produced for the PD effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the F effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the PD*V effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the PD*F effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V*F effect because adjusted p-values are not
available for all least-squares means differences.
NOTE: PROCEDURE GLIMMIX used (Total process time):
real time 3.84 seconds
cpu time 2.71 seconds
840 PROC glimmix DATA=CAPDVFF2019 plots=pearsonpanel;
841 CLASS PD V F;
842 MODEL AUDPC = PD V F PD*V PD*F V*F PD*V*F/DDFM=KENWARDROGER;
843 RANDOM Rep ;
844 lsmeans PD V F PD*V PD*F V*F PD*V*F/pdiff adjust=tukey lines;
845 run;
NOTE: With DDFM=SATTERTHWAITE or DDFM=KENWARDROGER, unadjusted p-values in tests are based on the
degrees of freedom specific to that comparison. P-values that are adjusted for
multiplicity, however, are by default based on the denominator degrees of freedom for the
Type III test of the fixed effect. If you specify the ADJDFE=ROW option in the LSMEANS or
LSMESTIMATE statement, the adjusted p-values take into account the row-wise degrees of
freedom.
NOTE: Convergence criterion (ABSGCONV=0.00001) satisfied.
ERROR: LINES display is not produced for the PD effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the F effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the PD*V effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the PD*F effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V*F effect because adjusted p-values are not
available for all least-squares means differences.
NOTE: PROCEDURE GLIMMIX used (Total process time):
real time 2.48 seconds
cpu time 2.28 seconds
846 PROC glimmix DATA=CAPDVFF2019 plots=pearsonpanel;
847 CLASS PD V F;
848 MODEL rAUDPC = PD V F PD*V PD*F V*F PD*V*F/DDFM=KENWARDROGER;
849 RANDOM Rep;
850 lsmeans PD V F PD*V PD*F V*F PD*V*F/pdiff adjust=tukey lines;
851 run;
NOTE: With DDFM=SATTERTHWAITE or DDFM=KENWARDROGER, unadjusted p-values in tests are based on the
degrees of freedom specific to that comparison. P-values that are adjusted for
multiplicity, however, are by default based on the denominator degrees of freedom for the
Type III test of the fixed effect. If you specify the ADJDFE=ROW option in the LSMEANS or
LSMESTIMATE statement, the adjusted p-values take into account the row-wise degrees of
freedom.
NOTE: Convergence criterion (ABSGCONV=0.00001) satisfied.
ERROR: LINES display is not produced for the PD effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the F effect because adjusted p-values are not available
for all least-squares means differences.
ERROR: LINES display is not produced for the PD*V effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the PD*F effect because adjusted p-values are not
available for all least-squares means differences.
ERROR: LINES display is not produced for the V*F effect because adjusted p-values are not
available for all least-squares means differences.
NOTE: PROCEDURE GLIMMIX used (Total process time):
real time 2.35 seconds
cpu time 2.17 seconds
852
853 ods graphics off;
854 ods rtf close; Thank you. I put the Log PROC GLIMMIX as requested. The output window on the other hand doesn't show anything. Only results are showing.
... View more