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.

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.

  • 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