Displaying 1 result from an estimated 1 matches for "designoccup".
2003 Sep 10
2
coef names in lm
...uot;design" where each
variate has its own name. However when I issue the command:
lm.1<-lm(response~design-1, weights=some.weights)
and follow it with:
summary(lm.1)
it seems to paste as a character the names of the variates
with design i.e I have something like:
designAge
designPlace
designOccupation
...
as names of coefficients and instead I just wanted to be
it seems to do
Age
Place
Occupation.
P.S.. the reason I need this is because I am using the xtable library to
turn output into latex tables and do not want to manually delete each and
every single "design" word in the coef...