causal_emergence: Causal Emergence

Description Usage Arguments Value Examples

View source: R/causal_emergence.R

Description

Given a microscale network, G, this function iteratively checks different coarse-grainings to see if it finds one with higher effective information.

Usage

1

Arguments

x

igraph or matrix object.

...

Span, and threshold parameters

Value

A list with letters and numbers.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
graph <- matrix(
  cbind(
    c(0.0, 1.0, 0.0, 0.0),
    c(0.0, 0.0, 1.0, 0.0),
    c(0.0, 0.0, 0.0, 1.0),
    c(0.0, 0.0, 0.0, 0.0)
  ),
 nrow = 4
) %>%
  igraph::graph.adjacency(mode = "directed")

causal_emergence(graph)

einet documentation built on April 24, 2020, 1:06 a.m.