我正在使用 R 中的 bnlearn 包来构建一个使用数据和专家知识的定制拟合离散贝叶斯网络。http://www.bnlearn.com/examples/custom/
这需要使用 bn.fit() 创建一个 bn.fit 对象并修改感兴趣节点的局部分布。对于离散贝叶斯网络(或条件高斯网络中的离散节点),可以使用 coef() 从 bn.fit 对象中提取条件概率表,对其进行更新和重新保存。
library(bnlearn)
dag = model2network("[A][C][F][B|A][D|A:C][E|B:F]") #creates a network
fitted <- bn.fit(dag, learning.test) #(determines conditional probability
given data in learning.test)
fitted[[3]] #CP for node [C] as example, fitted$C also works
cpt <- coef(fitted[[3]]) #extract coefficients from table
cpt[1:length(cpt)] = c(0.50, 0.25, 0.25) #new CPs
fitted$C<-cpt #assign new CPs to joint CP table
fitted$C #Works
Parameters of node C (multinomial distribution)
Conditional probability table:
a b c
0.50 0.25 0.25
我想通过索引bn.fit对象来更新大量节点,即
fitted[[3]][[4]][1:3]<-cpt #returns error
fitted[[3]][[4]]<-cpt #returns error
Error in check.nodes(name, x) :
nodes must be a vector of character strings, the labels of the nodes.
鉴于 [[ 和 $ 运算符之间的等价性,任何人都可以解释为什么会这样以及可能的解决方法。
identical(fitted$C,fitted[[3]])
TRUE
谢谢