Skip to content

Commit 620546b

Browse files
authored
Doc change the default value of pymc.draw from 500 to 1. (#5543)
* changed the default value of drwas from 500 to 1 * fixed samplers_draw docsting * fixed samplers_draw docsting
1 parent 4223b6e commit 620546b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pymc/sampling.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -2125,18 +2125,18 @@ def draw(
21252125
21262126
Parameters
21272127
----------
2128-
vars
2128+
vars : Variable or iterable of Variable
21292129
A variable or a list of variables for which to draw samples.
2130-
draws : int
2131-
Number of samples needed to draw. Detaults to 500.
2132-
mode
2133-
The mode used by ``aesara.function`` to compile the graph.
2134-
**kwargs
2135-
Keyword arguments for :func:`pymc.aesara.compile_pymc`
2130+
draws : int, default 1
2131+
Number of samples needed to draw.
2132+
mode : str or aesara.compile.mode.Mode, optional
2133+
The mode used by :func:`aesara.function` to compile the graph.
2134+
**kwargs : dict, optional
2135+
Keyword arguments for :func:`pymc.aesara.compile_pymc`.
21362136
21372137
Returns
21382138
-------
2139-
List[np.ndarray]
2139+
list of ndarray
21402140
A list of numpy arrays.
21412141
21422142
Examples

0 commit comments

Comments
 (0)