Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 LTS 回归进行变量选择,但遇到了这个错误。
sigma.full<-summary(ltsreg(y~x1+x2+x3+x4+x5))$scale
总结错误(ltsreg(y~x1+x2+x3+x4+x5))$scale: $ 操作符对原子向量无效
有人可以帮我解决这个错误吗?
假设您正在使用该功能MASS::ltsreg
MASS::ltsreg
利用
sigma.full<-ltsreg(y~x1+x2+x3+x4+x5)$scale
看看?ltsreg。
?ltsreg
结果ltsreg(y~x1+x2+x3+x4+x5)本身具有尺度信息。它的摘要没有$scale元素。
ltsreg(y~x1+x2+x3+x4+x5)
$scale
看看str(summary(ltsreg(...)))罗兰建议的
str(summary(ltsreg(...)))