0

Possible Duplicate:
How to test the statistical significance for categorical variable in linear regression?

I need to perform a multiple regression analysis. My dependent variable or "response" is a continuous/quantitative variable. I have several independent variables or "factors" and they are all categorical. I'm wondering what method/software would best suit my needs.

Pacific 231
  • 193
  • 1
  • 2
  • 11
  • 1
    Can you say more about what you'd like to know? (This question is fairly simple / sparse.) You may also be interested in [this recent question](http://stats.stackexchange.com/questions/31690/how-to-test-the-statistical-significance-for-categorical-variable-in-linear-regr). – gung - Reinstate Monica Jul 09 '12 at 21:51
  • good catch, @gung. I thought this sounded familiar. I voted to close as a duplicate. – Macro Jul 09 '12 at 22:06

1 Answers1

1

Ordinary linear regression should be fine for this. A categorical variable can be expressed through a set of dummy variables. In SAS you could use proc reg or proc glm. I am sure that R, STATA, minitab and SPSS also have similar ways to run such a model.

Michael R. Chernick
  • 39,640
  • 28
  • 74
  • 143
  • To add to Michael's reply, in R you can use the lm() function. In Stata, you can use the regress function. – jkd Jul 09 '12 at 20:55