Skip to content

Commit

Permalink
DOC, ENH: more doc about engine, examples and add reset
Browse files Browse the repository at this point in the history
  • Loading branch information
tupui committed Jun 22, 2020
1 parent b737c78 commit 3047b2a
Show file tree
Hide file tree
Showing 4 changed files with 451 additions and 183 deletions.
22 changes: 12 additions & 10 deletions scipy/stats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,16 +368,17 @@
.. autosummary::
:toctree: generated/
qmc.QMCEngine
qmc.Sobol
qmc.Halton
qmc.OrthogonalLatinHypercube
qmc.LatinHypercube
qmc.OptimalDesign
qmc.NormalQMC
qmc.MultivariateNormalQMC
qmc.discrepancy
qmc.scale
QMCEngine
Sobol
Halton
OrthogonalLatinHypercube
LatinHypercube
OptimalDesign
NormalQMC
MultivariateNormalQMC
discrepancy
scale
multinomial_qmc
Warnings used in :mod:`scipy.stats`
Expand All @@ -403,6 +404,7 @@
from . import mstats
from .contingency import chi2_contingency
from ._multivariate import *
from .qmc import *

__all__ = [s for s in dir() if not s.startswith("_")] # Remove dunders.

Expand Down

0 comments on commit 3047b2a

Please sign in to comment.