YXYXXX+10X−1/5X/πYXXYY|X)将相同。也就是说,与以前一样,它是否正常。(要更全面地理解该主题,它可以帮助您在此处阅读我的答案:如果残差是正态分布的,而Y不是,该怎么办?)
XXYXXXY
有关非线性变换如何更改模型以及模型回答的问题(重点是对数变换)的更多信息,它可以帮助您阅读以下出色的CV线程:
XYβ^00Xβ^1 (m)=100×β^1 (cm)Y 在1米以上将上升100倍,在1厘米以上将上升)。
Y YYλYX
XY
YXR
set.seed(9959) # this makes the example exactly reproducible
x = rnorm(100) # x is drawn from a normal population
y = 7 + 0.6*x + runif(100) # the residuals are drawn from a uniform population
mod = lm(y~x)
summary(mod)
# Call:
# lm(formula = y ~ x)
#
# Residuals:
# Min 1Q Median 3Q Max
# -0.4908 -0.2250 -0.0292 0.2539 0.5303
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 7.48327 0.02980 251.1 <2e-16 ***
# x 0.62081 0.02971 20.9 <2e-16 ***
# ---
# Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
#
# Residual standard error: 0.2974 on 98 degrees of freedom
# Multiple R-squared: 0.8167, Adjusted R-squared: 0.8148
# F-statistic: 436.7 on 1 and 98 DF, p-value: < 2.2e-16
在图中,我们看到两个边际都出现了合理的正态分布,联合分布看上去也出现了合理的双变量正态分布。尽管如此,残差的均匀性仍在其qq图中显示。两条尾巴相对于正态分布的下降速度都太快了(确实如此)。