Hi all, I'm trying to analyze if there are differences in Cover Averages of native plants between 4 different treatments over time. My data is organized as follows: MONTH BLOCK/TREATMENT TREATMENT COVER AVERAGE 1 1/1 1 0.234 2 1/1 1 0.2105 3 1/1 1 0.1675 4 1/1 1 0.0775 5 1/1 1 0 6 1/1 1 0.0255 7 1/1 1 0.1505 8 1/1 1 0.141 9 1/1 1 0.141 1 2/1 1 0.053 2 2/1 1 0.0325 3 2/1 1 0.015 4 2/1 1 0 5 2/1 1 0 6 2/1 1 0.001 7 2/1 1 0.0075 8 2/1 1 0.015 9 2/1 1 0.0155 My code is here: PROC GENMOD DATA=WORK.IMPORT DESCENDING;
CLASS BLOCK_TREATMENT TREATMENT COVER_AVERAGE MONTH;
MODEL COVER_AVERAGE = BLOCK_TREATMENT TREATMENT MONTH;
REPEATED SUBJECT = BLOCK_TREATMENT / type=IND;
RUN; Right now my output doesn't make much sense and every online article is over my head. I'm stuck with what I'm doing wrong.
... View more