chowliu: Chow-Liu Algorithm

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
chowliu(
  df,
  whitelist = NULL,
  blacklist = NULL,
  m = NULL,
  to = c("igraph", "adjacency", "edges", "graph", "bnlearn"),
  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.

m

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

to

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

seed

Seed used for random selection. Default: NULL

Examples

1
g <- chowliu(df)

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