Skip to content

Commit 078b87b

Browse files
committed
minor doc typos and ommissions
1 parent 9dd884e commit 078b87b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/tutorial/getting_started.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"cell_type": "markdown",
144144
"metadata": {},
145145
"source": [
146-
"To access probability scales, simply import :mod:`probscale`."
146+
"To access probability scales, simply import `probscale`."
147147
]
148148
},
149149
{
@@ -171,7 +171,7 @@
171171
"\n",
172172
"You can even use different probability distributions, though it can be tricky. You have to pass a frozen distribution from either [scipy.stats](http://docs.scipy.org/doc/scipy/reference/stats.html#continuous-distributions) or [paramnormal](http://phobson.github.io/paramnormal/) to the `dist` kwarg in `ax.set_[x|y]scale`.\n",
173173
"\n",
174-
"Here's a standard normal scale right next to a different normal scale and two beta scales for comparison"
174+
"Here's a standard normal scale with two different beta scales and a linear scale for comparison."
175175
]
176176
},
177177
{

probscale/viz.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ def probplot(data, ax=None, color=None, label=None, axtype='prob',
4242
scatter_kws, line_kws : dictionary, optional
4343
Dictionary of keyword arguments passed directly to ``ax.plot``
4444
when drawing the scatter points and best-fit line, respectively.
45+
pp_kws : dictionary, optional
46+
Dictionary of keyword arguments passed directly to
47+
``viz.plot_pos``.
4548
return_results : bool (default = False)
4649
If True a dictionary of results of is returned along with the
4750
figure.
@@ -59,7 +62,7 @@ def probplot(data, ax=None, color=None, label=None, axtype='prob',
5962
6063
See also
6164
--------
62-
viz.plot_plos
65+
viz.plot_pos
6366
numpy.polyfit
6467
scipy.stats.probplot
6568
scipy.stats.mstats.plotting_positions

0 commit comments

Comments
 (0)