Skip to content
Open

Doc #19

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6365385
Update doc: Distribution
jbdurand Mar 23, 2026
23a9eed
Update TODOs
jbdurand Mar 30, 2026
7cc9c38
Fix duplication of set_seed documentation
jbdurand Mar 30, 2026
76c974a
Add doxygen for dev environment
thomasarsouze Mar 30, 2026
2bb8195
Remove doxygen as a run-dependency
thomasarsouze Mar 30, 2026
52376fa
Add C++ bindings documentation
thomasarsouze Mar 30, 2026
0c27096
Add multinomial distribution
jbdurand Mar 30, 2026
c96ba7e
Merge branch 'doc' of github.com:openalea/stat_tool into doc
jbdurand Mar 30, 2026
48fb812
Fix typo in multinomial doc
jbdurand Mar 30, 2026
fc565d2
Add figure to clustering.ipynb
jbdurand May 18, 2026
bbe18ad
Trying to generate figures in documentation
jbdurand Jun 22, 2026
ca6a59b
Removing sphinxcontrib.programoutput from doc
jbdurand Jun 22, 2026
c4fd8af
Add mixtures and distibutions in doc
jbdurand Jun 22, 2026
6105c08
Add notebook on comparisons
jbdurand Jun 23, 2026
21fa8f4
Add notebook on comparisons
jbdurand Jun 23, 2026
2c7cf37
Fix bugs in doc sphinx
jbdurand Jun 29, 2026
5f2e66a
New name for correlation in stat_tool
jbdurand Jun 30, 2026
39353a4
Update documentation
jbdurand Jun 30, 2026
2b34836
Update doc: doc/examples/data_transform.ipynb
jbdurand Jul 2, 2026
c2d6204
Remove file produced by test
jbdurand Jul 3, 2026
6952ccb
Remove file produced by test
jbdurand Jul 3, 2026
adbe59d
Change title in examples/data_transform.ipynb
jbdurand Jul 6, 2026
30903cf
Restore figures overwritten by doctools
jbdurand Jul 6, 2026
54c3f6e
Fix erros in Mixture documentation
jbdurand Jul 6, 2026
6880815
Fixing minor typos in documentation
jbdurand Jul 7, 2026
0ecd155
Add tutorial on plotting
jbdurand Jul 7, 2026
a26fdee
Improve argument checking in Estimate, update tutorial on Plotting
jbdurand Jul 10, 2026
b1b205d
Debugging multivariate_mixtures
jbdurand Jul 16, 2026
6afe6ec
Debugging multivariate mixtures
jbdurand Jul 17, 2026
06ea4cd
Fix bug in binomial estimation
jbdurand Jul 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
- [x] Fix “ContinousParametric” and “ContinousParametricProcess” classes API documentation
- [x] Move "Usage Example" from "User guide" section (user/index.rst) to "Usage" (usage.md) section
- [ ] Add docstrings to constants. Simply add "///" instead of "//" ? Find how to transfert comments from doxygen xml to breathe
- [x] Add docstrings to constants. Simply add "///" instead of "//" ? Find how to transfert comments from doxygen xml to breathe
- [x] Welcome page: better integrate code lines (`pip install...`). Also move section "Note for developpers" into a more appropriated section ?
- [ ] Move objects description from "tutorials.rst" into "Usage" section
- [ ] Ensure that warnings are raise is non-existing keyword arguments are used in functions (e.g. Nbiteration in place of NbIteration)
- [x] Move objects description from "tutorials.rst" into "Usage" section
- [ ] Check that class members appear in C++ documentation (Reestimation, FrequencyDistribution...)
- [ ] Check consistency in StatError, StatErrorClass, _StatError, etc. Let them derive from BaseException.
- [ ] Wrap continuous distributions
- [ ] Use cross references properly, see "Usage" section
- [x] Check that definition of vignettes works properly for all notebooks.
- [ ] Replace hardcoded outputs by outputs of executed code; have doctest extension actually working (see jupyter-sphinx)
- [ ] Ensure that warnings are raised if non-existing keyword arguments are used in functions (e.g. Nbiteration in place of NbIteration)
- [ ] Have wrapper documentation be transferred to python module.
- [ ] Replace hard-coded relative paths by Path().parent etc.
1 change: 1 addition & 0 deletions conda/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies:
- setuptools_scm
- cmake
- boost
- doxygen
- matplotlib-base
- pip
- pip:
Expand Down
6 changes: 6 additions & 0 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ html-noplot: doxygen
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

.PHONY: html-nodoxygen
html-nodoxygen:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html. Doxgygen documentation has not been regenerated."

.PHONY: pickle
pickle: doxygen
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
Expand Down
1 change: 1 addition & 0 deletions doc/api/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
API Reference
=============

.. toctree::
:maxdepth: 2
:caption: AML API:
Expand Down
92 changes: 87 additions & 5 deletions doc/examples/clustering.ipynb

Large diffs are not rendered by default.

701 changes: 701 additions & 0 deletions doc/examples/comparison.ipynb

Large diffs are not rendered by default.

Loading
Loading