Sets the value of label for an axis whose associated scale has the dimension `x`. Parameters ---------- label: Unicode or None (default: None) The label for x axis
(label=None, mark=None, **kwargs)
| 386 | |
| 387 | |
| 388 | def xlabel(label=None, mark=None, **kwargs): |
| 389 | """Sets the value of label for an axis whose associated scale has the |
| 390 | dimension `x`. |
| 391 | |
| 392 | Parameters |
| 393 | ---------- |
| 394 | label: Unicode or None (default: None) |
| 395 | The label for x axis |
| 396 | """ |
| 397 | _set_label(label, mark, 'x', **kwargs) |
| 398 | |
| 399 | |
| 400 | def ylabel(label=None, mark=None, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…