View source: R/buildDescriptive.R
buildDescriptive | R Documentation |
A descriptive Bayesian network that approximates the Joint Probability
of the dataset y
, withoyt taking into account the temporal aspect.
buildDescriptive(
y,
structure.learning.algorithm = "tabu",
structure.learning.args.list = list(),
compile.junction = FALSE,
param.learning.method = "bayes",
parallelize = FALSE,
cluster.type = "FORK",
n.cores = NULL
)
y |
Stations dataset, as output by |
structure.learning.algorithm |
Algorithm used to perform structure learning, with name
as text. Supports all the score-based, constraint-based and hybrid bayesian network structure
learning algorithms from |
structure.learning.args.list |
List of arguments passed to structure.learning.algorithm,
in particular distance argument if local learning is used. Note that other arguments, e.g.
|
compile.junction |
Compile the junction tree from BN.fit to compute probabilities. Can be set to FALSE. Compiling the junction tree is necessary for using exact inference at the simulating stage. |
param.learning.method |
Either "bayes", for bayesian estimation; or "mle", for Maximum Likelihood Estimation. |
parallelize |
Set to |
cluster.type |
Either "PSOCK" or "FORK". Use the former under Windows systems,
refer to |
n.cores |
When |
buildDescriptive() can be used to build a Bayesian network that characterizes the spatial aspects of the dataset, whithout taking into account autocorrelation of the weather series.
Mikel N. Legasa
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.