BookmarkSubscribeRSS Feed
bigban777
Obsidian | Level 7

How i can interpret my results from proc glm

ods html style=statistical;
ods graphics on;
title "Anova with Plots";
PROC GLM DATA = smoke3 order=data;;
	CLASS amt;
	MODEL fef=amt/solution;
    /*NS PS NI LS MS HS*/
	/*MY BELIEVES*/
	CONTRAST 'PS NI vs LS' amt 0 -0.6 -0.4 1 0 0;
	ESTIMATE 'PS NI vs LS' intercept 9 amt 0 4 1 4 0 0 / divisor = 9;
	lsmeans amt/pdiff adjust=tukey;
run;
quit;
ods graphics off;
ods html close;

output:

Снимок.PNG

Describe my model:estimate and contrast?

 

PS i attached my code.

1 REPLY 1
Rick_SAS
SAS Super FREQ

The SAS documentation provides a mathematical description of Analysis of Variance.

 

The Getting Started Example for PROC GLM provides a step-by-step table-by-table analysi of the numbers that are produced by PROC GLM for an ANOVA.  There are also sections that describe the CONTRAST, ESTIMATE, and LSMEANS statements, along with examples.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 8456 views
  • 1 like
  • 2 in conversation