@@ -21,6 +21,7 @@ def hist_series(
21
21
yrot = None ,
22
22
figsize = None ,
23
23
bins = 10 ,
24
+ legend = False ,
24
25
backend = None ,
25
26
** kwargs ,
26
27
):
@@ -50,6 +51,8 @@ def hist_series(
50
51
bin edges are calculated and returned. If bins is a sequence, gives
51
52
bin edges, including left edge of first bin and right edge of last
52
53
bin. In this case, bins is returned unmodified.
54
+ legend : bool, default False
55
+ Whether to show the legend.
53
56
backend : str, default None
54
57
Backend to use instead of the backend specified in the option
55
58
``plotting.backend``. For instance, 'matplotlib'. Alternatively, to
@@ -82,6 +85,7 @@ def hist_series(
82
85
yrot = yrot ,
83
86
figsize = figsize ,
84
87
bins = bins ,
88
+ legend = legend ,
85
89
** kwargs ,
86
90
)
87
91
@@ -101,6 +105,7 @@ def hist_frame(
101
105
figsize = None ,
102
106
layout = None ,
103
107
bins = 10 ,
108
+ legend = False ,
104
109
backend = None ,
105
110
** kwargs ,
106
111
):
@@ -154,6 +159,8 @@ def hist_frame(
154
159
bin edges are calculated and returned. If bins is a sequence, gives
155
160
bin edges, including left edge of first bin and right edge of last
156
161
bin. In this case, bins is returned unmodified.
162
+ legend : bool, default False
163
+ Whether to show the legend.
157
164
backend : str, default None
158
165
Backend to use instead of the backend specified in the option
159
166
``plotting.backend``. For instance, 'matplotlib'. Alternatively, to
@@ -203,6 +210,7 @@ def hist_frame(
203
210
sharey = sharey ,
204
211
figsize = figsize ,
205
212
layout = layout ,
213
+ legend = legend ,
206
214
bins = bins ,
207
215
** kwargs ,
208
216
)
0 commit comments