Skip to content

Commit 046e34a

Browse files
committed
Update docstrings
1 parent 88da98c commit 046e34a

File tree

3 files changed

+5
-18
lines changed

3 files changed

+5
-18
lines changed

cmdstanpy/__init__.py

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,6 @@
66
import shutil
77
import tempfile
88

9-
_STANSUMMARY_STATS = [
10-
'Mean',
11-
'MCSE',
12-
'StdDev',
13-
'5%',
14-
'50%',
15-
'95%',
16-
'N_Eff',
17-
'N_Eff/s',
18-
'R_hat',
19-
]
20-
219
_TMPDIR = tempfile.mkdtemp()
2210
_CMDSTAN_WARMUP = 1000
2311
_CMDSTAN_SAMPLING = 1000
@@ -38,20 +26,20 @@ def _cleanup_tmpdir() -> None:
3826

3927
from ._version import __version__ # noqa
4028
from .install_cmdstan import rebuild_cmdstan
41-
from .model import CmdStanModel # noqa
42-
from .stanfit import ( # noqa
29+
from .model import CmdStanModel
30+
from .stanfit import (
4331
CmdStanGQ,
4432
CmdStanMCMC,
4533
CmdStanMLE,
4634
CmdStanVB,
4735
InferenceMetadata,
4836
from_csv,
4937
)
50-
from .utils import set_cmdstan_path # noqa
5138
from .utils import (
5239
cmdstan_path,
5340
cmdstan_version,
5441
install_cmdstan,
42+
set_cmdstan_path,
5543
set_make_env,
5644
show_versions,
5745
write_stan_json,

cmdstanpy/stanfit/gq.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Container for the result of running the sample (MCMC) method
3-
or generate quantities (GQ) method
2+
Container for the result of running the
3+
generate quantities (GQ) method
44
"""
55

66
from collections import Counter

cmdstanpy/stanfit/mcmc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""
22
Container for the result of running the sample (MCMC) method
3-
or generate quantities (GQ) method
43
"""
54

65
import math

0 commit comments

Comments
 (0)