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.
是否有预定义的函数可以在 R 编程语言中查找均方残差(MS Residual)?谢谢。
假设您正在谈论回归类型模型......我不知道一个功能,但如果您愿意使用两个,您可以创建一个新的(或只使用两个)。
msResid <- function(model) deviance(model)/df.residual(model)