Skip to content

Commit 24f37f1

Browse files
committed
update docs
1 parent ce674ce commit 24f37f1

File tree

10 files changed

+164
-4
lines changed

10 files changed

+164
-4
lines changed

.idea/.gitignore

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/causal-learn.iml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/csv-plugin.xml

Lines changed: 114 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Causal-learn needs the following packages to be installed beforehand:
3434
* matplotlib
3535
* graphviz
3636

37-
To use causal-learn, we could install it using [pip](https://pypi.org/project/sqlparse/):
37+
To use causal-learn, we could install it using [pip](https://pypi.org/project/causal-learn/):
3838

3939
```
4040
pip install causal-learn

docs/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Requirements
2828
Install via PyPI
2929
------------
3030

31-
To use causal-learn, we could install it using `pip <https://pypi.org/project/sqlparse/>`_:
31+
To use causal-learn, we could install it using `pip <https://pypi.org/project/causal-learn/>`_:
3232

3333
.. code-block:: console
3434

docs/source/independence_tests_index/chisq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Usage
99
--------
1010
.. code-block:: python
1111
12-
from causallearn.utils.cit import chisq
13-
p = chisq(data, X, Y, conditioning_set)
12+
from causallearn.utils.cit import cit
13+
p = cit.CIT(data, 'chisq')
1414
1515
1616
Parameters

0 commit comments

Comments
 (0)