Source code for dowhy.graph_learners.lingam

import networkx as nx
import numpy as np

from dowhy.graph_learners import GraphLearner
from dowhy.utils.graph_operations import *

from . import get_library_class_object


[docs]class LINGAM(GraphLearner): """ Causal discovery using the lingam library. Link: https://github.com/cdt15/lingam """ def __init__(self, data, full_method_name, *args, **kwargs): super().__init__(data, full_method_name, *args, **kwargs) library_class = get_library_class_object(full_method_name) self._method = library_class(*args, **kwargs)
[docs] def learn_graph(self, labels=None): """ Discover causal graph and return the graph in DOT format. """ self._method.fit(self._data) self._adjacency_matrix = self._method.adjacency_matrix_ # If labels provided if labels is not None: self._labels = labels self._graph_dot = adjacency_matrix_to_graph(self._adjacency_matrix, self._labels) # Return in valid DOT format self._graph_dot = str_to_dot(self._graph_dot.source) return self._graph_dot