[R] coef names in lm

2003-09-10 Thread Jean Eid
Dear all, I am interested in finding out how to change the names of coefficients in the lm function. I have a design matrix which I called 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:

RE: [R] coef names in lm

2003-09-10 Thread Liaw, Andy
If you coerce design into a data frame and then do lm.1 - lm(response ~ . - 1, data=design, ...) that should work. Andy -Original Message- From: Jean Eid [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 4:28 PM To: [EMAIL PROTECTED] Subject: [R] coef names in lm

Re: [R] coef names in lm

2003-09-10 Thread Roger D. Peng
Maybe this will work for you: df - as.data.frame(design) lm.2 - lm(response ~ ., df) -roger Jean Eid wrote: Dear all, I am interested in finding out how to change the names of coefficients in the lm function. I have a design matrix which I called design where each variate has its own name.