我正在尝试对数据集“心脏”(其中“ t”是我的因变量)的LDA和神经网络预测执行5倍交叉验证。我首先为LDA进行了编码,但效果很好,但是在设置5次神经网络重复时,我总是遇到“意外重复”错误。
buf=NULL
for(repeat in 1:5)
{
model=brnn(t~.,heart[-testing,],neurons=2)
y.net[testing]=predict(model,newdata=inp[testing,])
buf=rbind(buf,pred)
}
Error: unexpected 'repeat' in "for(repeat"
答案 0 :(得分:0)
repeat
是一个关键字。它被评估并给出错误。请用其他变量名称(如repetition
代替repeat。