Metadata-Version: 1.1
Name: causalmodels
Version: 0.0.3
Summary: Causal models in Python
Home-page: http://github.com/roronya/causalmodels
Author: roronya
Author-email: roronya628@gmail.com
License: MIT
Description: causalmodels
        ============
        
        causalmodels in Python.
        
        instalation
        -----------
        
        ::
        
            $ pip install causalmodels
        
        usage
        -----
        
        ::
        
            >>> import numpy as np
            >>> import causalmodels as cm
            >>> a = np.random.laplace(size=500)
            >>> b = np.random.laplace(size=500) + a
            >>> c = np.random.laplace(size=500) + a + b
            >>> data = [c, b, a]
            >>>
            >>> model = cm.DirectLiNGAM()
            >>> results = model.fit(data)
            >>> results.get_causal_order()
            [2, 1, 0]
        
Keywords: niconico api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
