gpt4 book ai didi

r - 将数据转变为常态。对于给定情况,最佳功能是什么?

转载 作者:行者123 更新时间:2023-12-02 04:45:09 24 4
gpt4 key购买 nike

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

<小时/>

例如:

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

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

最佳答案

你的意思是像 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

关于r - 将数据转变为常态。对于给定情况,最佳功能是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18464491/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com