SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
magman
Calcite | Level 5

Hi Everyone,

 

I am trying to enter variables in blocks using SAS 9.4 in a way analogous to how SPSS does this.  Here are the variables in this simplified example.

 

Dependent:  Anxiety Test Score,  "ANX"

Independent:  Age, Gender, Education,  Depression Measure score ("Depres"), Coping Measure score ("Cope").

 

What I'd like to do is regress "ANX" on "Depres" and"Cope," entered together as one "block" of variables," then in the same modelion, regress ANX on a second block of variables, "Age," "Gender," and "Education."  In this way, I can tell if the relationship between "ANX" and the first variable block (psychological test scores) changes when I introduce the second block (demographic variables).  I'm not really interested in doing stepwise regression (i.e., forward or backward selection), just this fairly simple analysis.

 

All I can tell from the documentation is that perhaps I indicate blocks by putting parentheses around the blocks of variables, but I'm not really sure if this is correct.  Could anyone help me with this simple, I think, ,problem?  This following states the problem in (sort of) SAS language.

 

proc reg data=Cohort.Anxiety; model Anx = (enter first block of variables); (enter second block of variables); run;

 

Thank you very much!

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

There's no parenthesis around the "blocks" in SAS PROC REG.

 

Just enter the variable names in one block, run the model, then fit another model with the variables from two blocks, and compare. One way to compare the models is the "Extra Sum of Squares Principle".

--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

There's no parenthesis around the "blocks" in SAS PROC REG.

 

Just enter the variable names in one block, run the model, then fit another model with the variables from two blocks, and compare. One way to compare the models is the "Extra Sum of Squares Principle".

--
Paige Miller
magman
Calcite | Level 5
Thank you very much for your solution! Very appreciated!

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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