无法使用神经网络构建ANN

时间:2015-03-30 05:42:21

标签: r

我尝试使用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)

0 个答案:

没有答案