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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 8977 views
  • 1 like
  • 2 in conversation