Nomo <- nomogram(svm,fun=plogis, + lp=F,fun.at=c(0.1,seq(0.2,0.8,by=0.1),0.9), + funlable="Risk of SVM") Error in nomogram(svm, fun = plogis, lp = F, fun.at = c(0.1, seq(0.2, : factor name(s) not in the design: funlable
时间: 2023-12-07 12:02:53 浏览: 166
kernel-3.10.0-957.27.2.el7.x86-64.rpm
这个错误提示中的拼写错误,应该是`funlabel`而不是`funlable`。因此,您需要将`funlable`改为`funlabel`即可解决此错误,如下所示:
```
Nomo <- nomogram(svm, fun = plogis, lp = F, fun.at = c(0.1, seq(0.2, 0.8, by = 0.1), 0.9), funlabel = "Risk of SVM")
```
请注意,`funlabel`参数用于指定因变量的标签。它应该是一个字符串,表示模型预测的风险或概率。您可以根据您的模型和数据选择适当的标签。
阅读全文