由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请教高手,下面这一段R code 是什么意思?谢谢
相关主题
请问高手, 这样计算cohen's D, effect size对吗?问个modeling data size的问题
【包子】问个从R结果中取值的问题proc genmod 结果的问题
I have a question about logistic regression modelAdaboost M1 - what's wrong with this code?
求助SAS计算main effect[包子] R的结果里求AIC
A question about regression请教:estimate, estimation, and estimator
想问一下怎么看p-value请问如何得到covariance matrix比较smooth的estimate?
SAS Proc Mixed Estimate for 3 way interaction问个multinomial logistic regression问题
请问一个Regression的问题请教一个bootstrap的问题(包子)
相关话题的讨论汇总
话题: lmout话题: coef话题: estimate话题: pred话题: sig
进入Statistics版参与讨论
1 (共1页)
s******1
发帖数: 39
1
请教高手,下面这一段R code 是什么意思?谢谢
getLMOutFunc = function(lmOut){
highSEL = coef(lmOut)[,"Estimate"][["(Intercept)"]] + coef(lmOut)[,"
Estimate"][["pred"]]
lowSEL = coef(lmOut)[,"Estimate"][["(Intercept)"]] - coef(lmOut)[,"
Estimate"][["pred"]]
sampleN = as.numeric(lmOut[["ngrps"]])
if(coef(lmOut)[row.names(coef(lmOut))=="pred",][[4]]<.05) {
sig = coef(lmOut)[row.names(coef(lmOut))=="pred",][[4]]
} else {
sig = "ns"
}
return(list("High SEL" = highSEL, "Low SEL" = lowSEL, "Sig" = sig, "N" =
sampleN))
}
n******g
发帖数: 2201
2
a function taking lmout as the argument and return a list
lmout is probably something like:
lmout <- lm(speed ~ dist, data = cars)
you can try:
getLMOutFunc(x) where x is an object of

【在 s******1 的大作中提到】
: 请教高手,下面这一段R code 是什么意思?谢谢
: getLMOutFunc = function(lmOut){
: highSEL = coef(lmOut)[,"Estimate"][["(Intercept)"]] + coef(lmOut)[,"
: Estimate"][["pred"]]
: lowSEL = coef(lmOut)[,"Estimate"][["(Intercept)"]] - coef(lmOut)[,"
: Estimate"][["pred"]]
: sampleN = as.numeric(lmOut[["ngrps"]])
: if(coef(lmOut)[row.names(coef(lmOut))=="pred",][[4]]<.05) {
: sig = coef(lmOut)[row.names(coef(lmOut))=="pred",][[4]]
: } else {

s***c
发帖数: 1664
3
ngrps是lme4的function, return categorical variable的level数. 整个function似
乎是return linear mixed model 的output里面每个random effect(一般是
categorical variable)的intercept estimate的区间, 是否significant, 和level数.
还是得看看lmout长什么样
s******1
发帖数: 39
4
非常感谢,
下面是 regression model 部分:
用学生情商(pred)来预测学生GPA, IEP(学生残疾Y/N), FRL(学生低收入Y/N), ELL(学
生英语非母语Y/N)
lmOut = lm(GPA ~ IEP + FRL + ELL + pred, data=reg2data)
1 (共1页)
进入Statistics版参与讨论
相关主题
请教一个bootstrap的问题(包子)A question about regression
弱问个用R fit GLM的问题想问一下怎么看p-value
How to fit a smoothed line in R?SAS Proc Mixed Estimate for 3 way interaction
请教一个SAS画图请问一个Regression的问题
请问高手, 这样计算cohen's D, effect size对吗?问个modeling data size的问题
【包子】问个从R结果中取值的问题proc genmod 结果的问题
I have a question about logistic regression modelAdaboost M1 - what's wrong with this code?
求助SAS计算main effect[包子] R的结果里求AIC
相关话题的讨论汇总
话题: lmout话题: coef话题: estimate话题: pred话题: sig