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

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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