Revision 43bb44cc8b6b79536e4b2afd0a7c724e90f137f7 authored by Balazs on 14 December 2020, 14:48:38 UTC, committed by GitHub on 14 December 2020, 14:48:38 UTC
1 parent d1b5ecc
Raw File
sas_accumulatives.txt
proc mixed data=<DATASET> ;

  class treatment trial_id visit <FACTORS>;

  model chgbaseline=treatment visit treatment*visit baseline <FACTORS and COVARIATES > /s alpha=0.05;

  repeated visit/type = cs subject=trial_id;

  lsmeans treatment*visit /cl om;

run;

DATASET: the input dataset

FACTORS: List of factors kept in the model

COVARIATES: List of covariates kept in the model
back to top