calc_mu {dbnR} | R Documentation |
Calculate the mu vector from a fitted BN or DBN
Description
Given a "bn.fit" or a "dbn.fit" object, calculate the mu vector of the equivalent multivariate Gaussian distribution. Front end of a C++ function.
Usage
calc_mu(fit)
Arguments
fit |
a bn.fit or dbn.fit object |
Value
a named numeric vector of the means of each variable
Examples
dt_train <- dbnR::motor[200:2500]
net <- bnlearn::mmhc(dt_train)
fit <- bnlearn::bn.fit(net, dt_train, method = "mle-g")
mu <- dbnR::calc_mu(fit)
f_dt_train <- dbnR::fold_dt(dt_train, size = 2)
net <- dbnR::learn_dbn_struc(dt_train, size = 2)
fit <- dbnR::fit_dbn_params(net, f_dt_train)
mu <- dbnR::calc_mu(fit)
[Package dbnR version 0.7.9 Index]