Creates a model
createCppModel(formula, cloneNet = TRUE, theta = NULL)
formula
: the model formulacloneNet
: create a deep copy of the network within the model objecttheta
: the model parameters.Creates a C++ Model object. In general this isn't needed by most users of the package.
data(ukFaculty) model <- createCppModel(ukFaculty ~ edges) model$calculate() model$statistics()