boot.chowliu: Chow-Liu Algorithm With Bootstrapping

Description Usage Arguments Examples

View source: R/algorithms.R

Description

This function allows you to learn a undirected graph from a dataset using the Chow-Liu algorithm.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
boot.chowliu(
  df,
  whitelist = NULL,
  blacklist = NULL,
  R = 200,
  m = NULL,
  threshold = 0.5,
  to = c("igraph", "adjacency", "edges", "graph", "bnlearn"),
  cluster = parallel::detectCores(),
  seed = sample(1:10^6, 1)
)

Arguments

df

Dataset.

whitelist

A data frame with two columns, containing a set of arcs to be included in the graph.

blacklist

A data frame with two columns, containing a set of arcs not to be included in the graph.

R

Number of bootstrap replicates (optional). Default: 200

m

Size of training set (optional). Default: nrow(df)/2

threshold

Minimum strength required for a coefficient to be included in the average adjacency matrix (optional). Default: 0.5

to

Output format ('adjacency', 'edges', 'graph', 'igraph', or 'bnlearn') (optional).

cluster

A cluster object from package parallel or the number of cores to be used (optional). Default: parallel::detectCores()

seed

Seed used for random selection. Default: NULL

Examples

1
2
3
obj <- boot.chowliu(df)
avg.g <- obj$average
g.rep <- obj$replicates

rlebron-bioinfo/gnlearn documentation built on July 25, 2020, 12:38 p.m.