当我在RStudio中单击“源”来运行整个文件时,我看不到插入符号生成的变量重要性图。正常绘制点似乎可行。
奇怪的是-仅运行该行似乎正常。 复制代码如下:
library(caret)
data("PlantGrowth")
PlantGrowth$test1 <- sample(1:2, 30, replace=TRUE)
control <- trainControl(method="repeatedcv", number=10, repeats=3)
model <- train(group ~ ., data=PlantGrowth, method="lvq", preProcess="scale",
trControl=control)
# estimate variable importance
importance <- varImp(model, scale=FALSE)
# summarize importance
print(importance)
# plot importance
plot(4, 5)
plot(importance)
plot(2, 3)
通常会出现两个点图,但是在采购文件时重要性不高。 RStudio版本:1.1.453