由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - Question about multiple regression in R
相关主题
问一道multiple linear regression的题通过canonical correlation 计算multiple regression coefficient的问题?
请问multi variate linear regression 选择risk factor 问题regression prediction问题
问个regression with dummy的问题help on a question!!! Logistic regression??
急问negative binomial regression的结果的model significance看哪个参数包子求科普:Factorial design得到的数据可以用ANOVA来处理吗
请教logistic regression的independent variable是categoricalregression problem - go confused
请教SAS达人关于编循环regression的问题,多谢!紧急求助,问到MULTIPLE REGRESSION的题
R lm一问求助,怎么消除线性回归的multicollinearity
问个sas的问题请教比较两个regression coefficient
相关话题的讨论汇总
话题: factor话题: regression话题: question话题: lm话题: multiple
进入Statistics版参与讨论
1 (共1页)
s****y
发帖数: 297
1
In my dataset, I have several variables (Y, A, B, C...) and one factor.
I'm investigating the regression using the command
lm(Y ~ A+ B + C +...)
but now I want to know the regression coefficients of A, B, and C... for
every factor levels.
The factor have more than 20 levels...
Is there any good way to do this in R?
Thanks in advance!!
s****y
发帖数: 297
2
nobody knows?
555...
O*****y
发帖数: 222
3
If you put your data into a data frame named df, then
summary(lm(Y~ ., data=df))
will print out all the coefficients.

【在 s****y 的大作中提到】
: In my dataset, I have several variables (Y, A, B, C...) and one factor.
: I'm investigating the regression using the command
: lm(Y ~ A+ B + C +...)
: but now I want to know the regression coefficients of A, B, and C... for
: every factor levels.
: The factor have more than 20 levels...
: Is there any good way to do this in R?
: Thanks in advance!!

l*********s
发帖数: 5409
4
lm does handle factors.

【在 s****y 的大作中提到】
: In my dataset, I have several variables (Y, A, B, C...) and one factor.
: I'm investigating the regression using the command
: lm(Y ~ A+ B + C +...)
: but now I want to know the regression coefficients of A, B, and C... for
: every factor levels.
: The factor have more than 20 levels...
: Is there any good way to do this in R?
: Thanks in advance!!

s****y
发帖数: 297
5
多谢留上两位,可能是我的问题没有说明白,我的意思是我需要在每一个factor level
都fit一次 lm (y~A+B+C...), 这样如果factor有20多个level,我就需要20多次
summary,
可有简便一点的方法? 我知道在SAS 里有proc reg, by factor, 这样会给出每个
level的结果, R里有类似的办法吗?
谢谢啦!!
l*********s
发帖数: 5409
6
What is not clear is not your statement but your understanding :-)
You only need to fit lm once with the categorical variable, say D, which is a
factor of 20 lvls. lm function will give you coeff estimate for 19 lvls except the base lvl.

level

【在 s****y 的大作中提到】
: 多谢留上两位,可能是我的问题没有说明白,我的意思是我需要在每一个factor level
: 都fit一次 lm (y~A+B+C...), 这样如果factor有20多个level,我就需要20多次
: summary,
: 可有简便一点的方法? 我知道在SAS 里有proc reg, by factor, 这样会给出每个
: level的结果, R里有类似的办法吗?
: 谢谢啦!!

s****y
发帖数: 297
7
可是我感兴趣的是在每个factor level的A, B,C的coeff extimate 啊,呵呵
用for 循环固然可以,可是有没有更简便的办法呢?谢谢了...
n*****t
发帖数: 41
8
lm (y~(A+B+C...)*factor)不就可以吗
s****y
发帖数: 297
9
不行啊,这样只有一个sigma,一个intercept啊,我需要在每个factor level都有一个
值啊,呵呵

【在 n*****t 的大作中提到】
: lm (y~(A+B+C...)*factor)不就可以吗
D******n
发帖数: 2836
10
?by

level

【在 s****y 的大作中提到】
: 多谢留上两位,可能是我的问题没有说明白,我的意思是我需要在每一个factor level
: 都fit一次 lm (y~A+B+C...), 这样如果factor有20多个level,我就需要20多次
: summary,
: 可有简便一点的方法? 我知道在SAS 里有proc reg, by factor, 这样会给出每个
: level的结果, R里有类似的办法吗?
: 谢谢啦!!

s****y
发帖数: 297
11
啥意思?

【在 D******n 的大作中提到】
: ?by
:
: level

D******n
发帖数: 2836
12
type this in R and you will know.
there is an example in the end which is exactly describing your case.

【在 s****y 的大作中提到】
: 啥意思?
1 (共1页)
进入Statistics版参与讨论
相关主题
请教比较两个regression coefficient请教logistic regression的independent variable是categorical
请问如何验证已知的logistic regression models是不是能很好predict 自己的dataset请教SAS达人关于编循环regression的问题,多谢!
model sample size重要吗?R lm一问
在SAS里想要用一组数据得出的coefficient estimates来predict一组新数据有什么简便方法问个sas的问题
问一道multiple linear regression的题通过canonical correlation 计算multiple regression coefficient的问题?
请问multi variate linear regression 选择risk factor 问题regression prediction问题
问个regression with dummy的问题help on a question!!! Logistic regression??
急问negative binomial regression的结果的model significance看哪个参数包子求科普:Factorial design得到的数据可以用ANOVA来处理吗
相关话题的讨论汇总
话题: factor话题: regression话题: question话题: lm话题: multiple