Skip to content

Commit 41d4858

Browse files
committed
Docs
1 parent 9fd9910 commit 41d4858

File tree

10 files changed

+17
-784
lines changed

10 files changed

+17
-784
lines changed

docs/render_alg_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def info_to_small_table():
159159

160160
#### This is the modules docs files:
161161
for p in sorted(algspath.iterdir()):
162-
print(p.name)
162+
163163
if not p.is_dir():
164164
continue
165165
if p.name == "docs.rst" or p.name == ".DS_Store":

docs/source/available_structure_learning_algorithms.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ Algorithms
4848
structure_learning_algorithms/bidag_itsearch
4949
structure_learning_algorithms/huge_mb
5050
structure_learning_algorithms/gcastle_mcsl
51+
structure_learning_algorithms/mice
5152
structure_learning_algorithms/bnlearn_mmhc
5253
structure_learning_algorithms/bnlearn_mmpc
5354
structure_learning_algorithms/mvpc
54-
structure_learning_algorithms/causallearn_ges
5555
structure_learning_algorithms/gcastle_notears
5656
structure_learning_algorithms/gcastle_notears_low_rank
5757
structure_learning_algorithms/gcastle_notears_nonlinear
5858
structure_learning_algorithms/bidag_order_mcmc
59+
structure_learning_algorithms/gcastle_pc
5960
structure_learning_algorithms/pcalg_pc
60-
structure_learning_algorithms/bnlearn_pcstable
6161
structure_learning_algorithms/tetrad_pc
62-
structure_learning_algorithms/gcastle_pc
62+
structure_learning_algorithms/bnlearn_pcstable
6363
structure_learning_algorithms/paralleldg
6464
structure_learning_algorithms/trilearn_pgibbs
6565
structure_learning_algorithms/bidag_partition_mcmc
@@ -69,9 +69,8 @@ Algorithms
6969
structure_learning_algorithms/bnlearn_rsmax2
7070
structure_learning_algorithms/bnlearn_sihitonpc
7171
structure_learning_algorithms/huge_tiger
72-
structure_learning_algorithms/bnlearn_tabu
73-
structure_learning_algorithms/mice
7472
structure_learning_algorithms/bips_tpc
73+
structure_learning_algorithms/bnlearn_tabu
7574

7675

7776
Apart from the original parameters of the underlying software, each algorithm module is equipped with an additional parameter, ``timeout``, which is the maximum time in seconds allowed for the algorithm to run.
@@ -114,7 +113,7 @@ To add new modules, see :ref:`new_modules`.
114113
- `DAG <https://en.wikipedia.org/wiki/Directed_acyclic_graph>`__, `CPDAG <https://search.r-project.org/CRAN/refmans/pcalg/html/dag2cpdag.html>`__
115114
- `BiDAG <https://cran.r-project.org/web/packages/BiDAG/index.html>`__
116115
- :ref:`bidag_partition_mcmc <bidag_partition_mcmc>`
117-
* - :ref:`tPC <bips_tpc>`
116+
* - :ref:`TPC <bips_tpc>`
118117
- `CPDAG <https://search.r-project.org/CRAN/refmans/pcalg/html/dag2cpdag.html>`__
119118
- `tpc <https://github.com/bips-hb/tpc>`__
120119
- :ref:`bips_tpc <bips_tpc>`
@@ -266,7 +265,7 @@ To add new modules, see :ref:`new_modules`.
266265
- `UG <https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)#Graph>`__
267266
- `huge <https://cran.r-project.org/web/packages/huge/index.html>`__
268267
- :ref:`huge_tiger <huge_tiger>`
269-
* - :ref:`mice <mice>`
268+
* - :ref:`MICE <mice>`
270269
-
271270
- `mice <https://amices.org/mice/>`__
272271
- :ref:`mice <mice>`

docs/source/structure_learning_algorithms/bips_tpc.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
:og:description: This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available.
55
:og:image:alt: Benchpress logo
66
:og:sitename: Benchpress causal discovery platform
7-
:og:title: temporal PC (bips_tpc)
7+
:og:title: Temporal PC (bips_tpc)
88

99
.. meta::
10-
:title: temporal PC
10+
:title: Temporal PC
1111
:description: This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available.
1212

1313

1414
.. _bips_tpc:
1515

16-
tPC (tpc)
16+
TPC (tpc)
1717
**********
1818

1919

@@ -40,11 +40,11 @@ tPC (tpc)
4040

4141

4242

43-
temporal PC
43+
Temporal PC
4444
---------------
4545

4646

47-
This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available. Our implementation is a modified version of pc from the pcalg package (Kalisch et al. 2012) with the following additional options:
47+
This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available. Our implementation is a modified version of pc from the pcalg package (Kalisch et al. 2012) with more :ref:`edge_constraints` supported.
4848

4949
It also supports the Multiple Imputation for Causal Graph Discovery (micd) package.
5050
Which is and add-on to the R package pcalg for handling missing data in contrataint-based causal graph discovery. Supports continuous, discrete and mixed data. Two options are available: 1) gaussCItwd, disCItwd and mixCItwd perform test-wise deletion, where missing observations are deleted as necessary on a test-by-test basis; 2) gaussMItest, disMItest and mixMItest perform conditional independence tests on multiply imputed data.

docs/source/structure_learning_algorithms/mice.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
.. _mice:
1515

16-
mice (mice)
16+
MICE (mice)
1717
************
1818

1919

docs/source/structure_learning_algorithms/tetrad_fas.rst

Lines changed: 0 additions & 70 deletions
This file was deleted.

workflow/rules/structure_learning_algorithms/bips_tpc/docs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available. Our implementation is a modified version of pc from the pcalg package (Kalisch et al. 2012) with the following additional options:
1+
This package implements the tPC algorithm for causal discovery. The 't' stands for 'temporal' or 'tiers' and indicates that background knowledge in the form of a partial node/variable ordering is available. Our implementation is a modified version of pc from the pcalg package (Kalisch et al. 2012) with more :ref:`edge_constraints` supported.
22

33
It also supports the Multiple Imputation for Causal Graph Discovery (micd) package.
44
Which is and add-on to the R package pcalg for handling missing data in contrataint-based causal graph discovery. Supports continuous, discrete and mixed data. Two options are available: 1) gaussCItwd, disCItwd and mixCItwd perform test-wise deletion, where missing observations are deleted as necessary on a test-by-test basis; 2) gaussMItest, disMItest and mixMItest perform conditional independence tests on multiply imputed data.

workflow/rules/structure_learning_algorithms/bips_tpc/info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"title": "tPC",
3-
"title_full": "temporal PC",
2+
"title": "TPC",
3+
"title_full": "Temporal PC",
44
"version": "137e18b",
55
"package": {
66
"title": "tpc",

workflow/rules/structure_learning_algorithms/mice/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "mice",
2+
"title": "MICE",
33
"title_full": "Multivariate Imputation by Chained Equations",
44
"version": "3.17.0",
55
"package": {

0 commit comments

Comments
 (0)