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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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