Skip to content

Instantly share code, notes, and snippets.

View rociotmartinez's full-sized avatar

Rocio T Martinez-Nunez rociotmartinez

  • King's College London
  • London (UK)
View GitHub Profile
# This is the code to be used in SAS to perform differential expression
ods output lsmeans=ftot_lsmean_status;
ods output modelanova=ftot_model_status;
proc glm data=finaltotal order=internal outstat=ftot_glm_results ;
class status ;
model pct = status / ss3 ;
lsmeans status / out=ftot_pct_means;