我想在R中绘制神经网络,但输入向量包含权重和拓扑。我读过这篇文章https://beckmw.wordpress.com/2013/11/14/visualizing-neural-networks-in-r-update/ 但在尝试重现上述网站上的以下代码时
mod.in<-c(13.12,1.49,0.16,-0.11,-0.19,-0.16,0.56,-0.52,0.81)
struct<-c(2,2,1) #two inputs, two hidden, one output
plot.nnet(mod.in,struct=struct)
我明白了:
mod.in $ n中的错误:$运算符对原子矢量无效
这是有道理的,因为mod.in
是一个向量而plot.nnet
可能需要一个递归数据结构(nnet或neuralnet的结果)。
我错过了什么吗?谢谢