GES with the BIC score or generalized score

Algorithm Introduction

Greedy Equivalence Search (GES) algorithm with BIC score [1] and generalized score [2].

Usage

from causallearn.search.ScoreBased.GES import ges

# default parameters
Record = ges(X)

# or customized parameters
Record = ges(X, score_func, maxP, parameters)

# Visualization using pydot
from causallearn.utils.GraphUtils import GraphUtils
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
import io

pyd = GraphUtils.to_pydot(Record['G'])
tmp_png = pyd.create_png(f="png")
fp = io.BytesIO(tmp_png)
img = mpimg.imread(fp, format='png')
plt.axis('off')
plt.imshow(img)
plt.show()


# or save the graph
pyd.write_png('simple_test.png')

Visualization using pydot is recommended (usage example). If specific label names are needed, please refer to this usage example (e.g., GraphUtils.to_pydot(Record[‘G’], labels=[“A”, “B”, “C”]).

Parameters

X: numpy.ndarray, shape (n_samples, n_features). Data, where n_samples is the number of samples and n_features is the number of features.

score_func: The score function you would like to use, including (see score_functions.). Default: ‘local_score_BIC’.

maxP: Allowed maximum number of parents when searching the graph. Default: None.

parameters: Needed when using CV likelihood. Default: None.
  • parameters[‘kfold’]: k-fold cross validation.

  • parameters[‘lambda’]: regularization parameter.

  • parameters[‘dlabel’]: for variables with multi-dimensions, indicate which dimensions belong to the i-th variable.

Returns

  • Record[‘G’]: learned causal graph, where Record[‘G’].graph[j,i]=1 and Record[‘G’].graph[i,j]=-1 indicate i –> j; Record[‘G’].graph[i,j] = Record[‘G’].graph[j,i] = -1 indicates i — j.

  • Record[‘update1’]: each update (Insert operator) in the forward step.

  • Record[‘update2’]: each update (Delete operator) in the backward step.

  • Record[‘G_step1’]: learned graph at each step in the forward step.

  • Record[‘G_step2’]: learned graph at each step in the backward step.

  • Record[‘score’]: the score of the learned graph.