由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 为什么数据‘看起来’不错,可是R^2却很低
相关主题
R lm一问mixed model DF 问题
A question about regressionR lme random effect output, waiting online for response
急问negative binomial regression的结果的model significance看哪个参数求教linear mixed model R2 的问题
请教有关linear mix model fitting using lme4 R package, lmeR问题:如果容易的得到Residual Sum of Squares?
One interview question:) Looking for helpmatlab里怎么做residual是自回归的regression? (转载)
如何把model fitting statistics 读出来(R)R question: how to reduce the number of loops by using apply function in my case?
一个低级R 问题survival analysis and statistical power problem 求助
有谁知道crossover design里面作linear mixed model如何计算coefficient of variation (CV)?怎样用R 来提取 micrarray 中的regressor variable 的值? (转载)
相关话题的讨论汇总
话题: squared话题: x1话题: lm话题: error话题: multiple
进入Statistics版参与讨论
1 (共1页)
mw
发帖数: 525
1
外行来问个外行的问题哈,在R里面做个lm
lm(A ~ 0+观测值)
得到的R只有0.001 0.002之类的,可是当我把观测值做个bracket,得到一个table
观测值 | A
-----------------
-0.003 -2
-0.002 -1
-0.001 -1
0 0
0.001 0
0.002 1
0.003 0
我觉得这里明明有一个很强烈的关系存在嘛 ,为什么Rsquare 这么低呢?
有没有专业人士给我解释一下?
谢谢了
k*******a
发帖数: 772
2
程序哪里写错了把
要不就是你人为设定了 intercept 为0
w*******9
发帖数: 1433
3
R^2 no longer has "that" interpretation in regression through the origin.
You can have negative R^2 in that case.

【在 k*******a 的大作中提到】
: 程序哪里写错了把
: 要不就是你人为设定了 intercept 为0

f*******n
发帖数: 2665
4
intercept设成0会导致R2值偏高。

【在 k*******a 的大作中提到】
: 程序哪里写错了把
: 要不就是你人为设定了 intercept 为0

w*******9
发帖数: 1433
5
why?

【在 f*******n 的大作中提到】
: intercept设成0会导致R2值偏高。
D*G
发帖数: 471
6
你这个sample这么少 很难说明问题
而且一般“看”只能看出有没有明显的相关, 而很难看出R2有多大。 你这个数据可能
p-value比较小,因为的确有正相关的趋势,但是r2多大很难看出来。
w*******9
发帖数: 1433
7
不限制intercept,R^2=0.753

【在 D*G 的大作中提到】
: 你这个sample这么少 很难说明问题
: 而且一般“看”只能看出有没有明显的相关, 而很难看出R2有多大。 你这个数据可能
: p-value比较小,因为的确有正相关的趋势,但是r2多大很难看出来。

T*****u
发帖数: 7103
8
你randomly选7个数,r2等于0.7的概率都快7%了

【在 mw 的大作中提到】
: 外行来问个外行的问题哈,在R里面做个lm
: lm(A ~ 0+观测值)
: 得到的R只有0.001 0.002之类的,可是当我把观测值做个bracket,得到一个table
: 观测值 | A
: -----------------
: -0.003 -2
: -0.002 -1
: -0.001 -1
: 0 0
: 0.001 0

o**********r
发帖数: 76
9
I just ran it and got:
Multiple R-squared: 0.7563

【在 mw 的大作中提到】
: 外行来问个外行的问题哈,在R里面做个lm
: lm(A ~ 0+观测值)
: 得到的R只有0.001 0.002之类的,可是当我把观测值做个bracket,得到一个table
: 观测值 | A
: -----------------
: -0.003 -2
: -0.002 -1
: -0.001 -1
: 0 0
: 0.001 0

t*****w
发帖数: 254
10
Answer #1;
Call:
lm(formula = x1[, 1] ~ x1[, 2])
Residuals:
1 2 3 4 5 6 7
0.000025 -0.000900 0.000100 -0.000825 0.000175 -0.000750 0.002175
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 0.0008250 0.0004887 1.688 0.152
x1[, 2] 0.0019250 0.0004887 3.939 0.011 *
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.001168 on 5 degrees of freedom
Multiple R-squared: 0.7562, Adjusted R-squared: 0.7075
F-statistic: 15.51 on 1 and 5 DF, p-value: 0.01097
Answer #2;
Call:
lm(formula = x1[, 1] ~ 0 + x1[, 2])
Residuals:
Min 1Q Median 3Q Max
-4.286e-04 7.143e-05 4.286e-04 7.857e-04 3.000e-03
Coefficients:
Estimate Std. Error t value Pr(>|t|)
x1[, 2] 0.0015714 0.0005051 3.111 0.0208 *
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.001336 on 6 degrees of freedom
Multiple R-squared: 0.6173, Adjusted R-squared: 0.5536
F-statistic: 9.68 on 1 and 6 DF, p-value: 0.02082
I don't know why LZ complains R square is too low. I guess there is coding
bug.
### if someone is hiring a statistical programmer, please contact me.
1 (共1页)
进入Statistics版参与讨论
相关主题
怎样用R 来提取 micrarray 中的regressor variable 的值? (转载)One interview question:) Looking for help
normality test mix model如何把model fitting statistics 读出来(R)
问一个用simulation的问题一个低级R 问题
deviance residual有谁知道crossover design里面作linear mixed model如何计算coefficient of variation (CV)?
R lm一问mixed model DF 问题
A question about regressionR lme random effect output, waiting online for response
急问negative binomial regression的结果的model significance看哪个参数求教linear mixed model R2 的问题
请教有关linear mix model fitting using lme4 R package, lmeR问题:如果容易的得到Residual Sum of Squares?
相关话题的讨论汇总
话题: squared话题: x1话题: lm话题: error话题: multiple