我尝试使用neuralnet
构建人工神经网络,但收到以下错误消息:
nn <- neuralnet(Classs ~ . , s23, hidden=10, threshold=0.01)
terms.formula(公式)中的错误:'。'在公式中没有'数据'参数
有人可以向我解释此错误消息吗?这是我的代码:
library(neuralnet)
s23<-read.csv("E:/Research/SEM6/classification/breastcancer.csv")
s23
nn <- neuralnet(Classs ~ . , s23, hidden=10, threshold=0.01)
names(nn)
nn$result.matrix
plot(nn)