将数据转换为常态。给定案例的最佳功能是什么?

时间:2013-08-27 11:45:51

标签: r statistics normal-distribution

是否有一个函数或包允许寻找最佳(或最好的)变量转换,以使模型的残差尽可能正常?


例如:

frml = formula(some_tranformation(A) ~ B+I(B^2)+B:C+C)
model = aov(formula, data=data)
shapiro.test(residuals(model))

是否有一个函数可以告诉函数some_transformation()什么是优化残差的正态性?

2 个答案:

答案 0 :(得分:7)

你的意思是像Box-Cox转型?

library(car)
m0 <- lm(cycles ~ len + amp + load, Wool)
plot(m0, which=2)

enter image description here

# Box Cox Method, univariate
summary(p1 <- powerTransform(m0))
# bcPower Transformation to Normality 
# 
#    Est.Power Std.Err. Wald Lower Bound Wald Upper Bound
# Y1   -0.0592   0.0611          -0.1789           0.0606
# 
# Likelihood ratio tests about transformation parameters
#                              LRT df      pval
# LR test, lambda = (0)  0.9213384  1 0.3371238
# LR test, lambda = (1) 84.0756559  1 0.0000000


# fit linear model with transformed response:
coef(p1, round=TRUE)
summary(m1 <- lm(bcPower(cycles, p1$roundlam) ~ len + amp + load, Wool))
plot(m1, which=2)

enter image description here

答案 1 :(得分:6)

不幸的是,这不是统计数据中已解决的问题。 @statquant建议的用户几乎是你能做到的最好的,但它并非没有自己的陷阱。

需要注意的一件重要事情是,一旦您获得合理的样本量(即数百个),正常性测试(如shapiro.test)对变化非常敏感,因此您不应盲目依赖它们。

我自己,我把问题扔进了太难的篮子里。如果数据看起来不是正常分布的,那么我会尝试找到要在数据上运行的统计信息的非参数版本。