假设由于某些原因,您必须:
您将使用什么函数在R中重建模型?
答案 0 :(得分:2)
“在R中重建模型” 的含义还不清楚。我假设您要存储线性模型的输出,然后稍后(也许是从新的R端子中)重新读取对象。
这是一个可重复的最小示例:
# Fit a linear model
fit <- lm(mpg ~ disp, data = mtcars)
# Save as RDS
saveRDS(fit, file = "my_fit.rds")
# Clean up the workspace (or quit R)
rm(fit)
fit <- readRDS("my_fit.rds")
fit
#
#Call:
#lm(formula = mpg ~ disp, data = mtcars)
#
#Coefficients:
#(Intercept) disp
# 29.59985 -0.04122