@@ -20,8 +20,6 @@ def filled_hist(ax, edges, values, bottoms=None, orientation='v',
2020 """
2121 Draw a histogram as a stepped patch.
2222
23- Extra kwargs are passed through to `fill_between`
24-
2523 Parameters
2624 ----------
2725 ax : Axes
@@ -41,6 +39,9 @@ def filled_hist(ax, edges, values, bottoms=None, orientation='v',
4139 Orientation of the histogram. 'v' (default) has
4240 the bars increasing in the positive y-direction.
4341
42+ **kwargs
43+ Extra keyword arguments are passed through to `.fill_between`.
44+
4445 Returns
4546 -------
4647 ret : PolyCollection
@@ -103,11 +104,11 @@ def stack_hist(ax, stacked_data, sty_cycle, bottoms=None,
103104
104105 If not given and stacked data is an array defaults to 'default set {n}'
105106
106- If stacked_data is a mapping, and labels is None, default to the keys
107- (which may come out in a random order) .
107+ If * stacked_data* is a mapping, and * labels* is None, default to the
108+ keys .
108109
109- If stacked_data is a mapping and labels is given then only
110- the columns listed by be plotted.
110+ If * stacked_data* is a mapping and * labels* is given then only the
111+ columns listed will be plotted.
111112
112113 plot_func : callable, optional
113114 Function to call to draw the histogram must have signature:
@@ -116,9 +117,9 @@ def stack_hist(ax, stacked_data, sty_cycle, bottoms=None,
116117 label=label, **kwargs)
117118
118119 plot_kwargs : dict, optional
119- Any extra kwargs to pass through to the plotting function. This
120- will be the same for all calls to the plotting function and will
121- over-ride the values in cycle .
120+ Any extra keyword arguments to pass through to the plotting function.
121+ This will be the same for all calls to the plotting function and will
122+ override the values in *sty_cycle* .
122123
123124 Returns
124125 -------
0 commit comments