@@ -198,15 +198,19 @@ def _dsplot(plotfunc):
198
198
x, y : str
199
199
Variable names for x, y axis.
200
200
u, v : str, optional
201
- Variable names for quiver or streamplot plots
201
+ Variable names for quiver or streamplot plots only
202
202
hue: str, optional
203
- Variable by which to color scattered points
203
+ Variable by which to color scattered points or arrows
204
204
hue_style: str, optional
205
205
Can be either 'discrete' (legend) or 'continuous' (color bar).
206
206
markersize: str, optional
207
207
scatter only. Variable by which to vary size of scattered points.
208
208
size_norm: optional
209
209
Either None or 'Norm' instance to normalize the 'markersize' variable.
210
+ scale: scalar, optional
211
+ Quiver only. Number of data units per arrow length unit.
212
+ Use this to control the length of the arrows: larger values lead to
213
+ smaller arrows
210
214
add_guide: bool, optional
211
215
Add a guide that depends on hue_style
212
216
- for "discrete", build a legend.
@@ -245,12 +249,11 @@ def _dsplot(plotfunc):
245
249
be either ``viridis`` (if the function infers a sequential
246
250
dataset) or ``RdBu_r`` (if the function infers a diverging
247
251
dataset). When `Seaborn` is installed, ``cmap`` may also be a
248
- `seaborn` color palette. If ``cmap`` is seaborn color palette
249
- and the plot type is not ``contour`` or ``contourf``, ``levels``
250
- must also be specified.
252
+ `seaborn` color palette. If ``cmap`` is seaborn color palette,
253
+ ``levels`` must also be specified.
251
254
colors : color-like or list of color-like, optional
252
- A single color or a list of colors. If the plot type is not ``contour``
253
- or ``contourf``, the ``levels`` argument is required.
255
+ A single color or a list of colors. The ``levels`` argument
256
+ is required.
254
257
center : float, optional
255
258
The value at which to center the colormap. Passing this value implies
256
259
use of a diverging colormap. Setting it to ``False`` prevents use of a
0 commit comments