Displaying 1 result from an estimated 1 matches for "age_2005".
Did you mean:
age_2004
2010 Aug 17
0
Singular error in rlm
...st regression in R, using the following command line
library (MASS)
rfmodel2 <- rlm (TotalEmployment_2005 ~ ALABAMA + MISSISSIPPI + LOUISIANA +
TotalEmployment_2000 + PCWhitePop_2005 + UnemploymentRate_2005 +
PCUrbanPop2000 + PCPeopleWithACollegeDegree_2000 +
PCPopulation.of.or.over.65.years.of.age_2005)
summary (rfmodel2)
But, it keeps giving me an error message as soon as I try to run it
Error in rlm.default(x, y, weights, method = method, wt.method = wt.method,
:
'x' is singular: singular fits are not implemented in rlm
I used the above mentioned command line previously and it wor...