pyplot
Wrapper for matplotlib plotting functions.
imshow(*args, ax=None, **kwargs)
¶
Display an image, i.e. data on a 2D regular raster.
This is a wrapper of pyplot.imshow(). In contrast to the original function
the default value of zorder is increased to 1.
Parameters:
-
ax(Axes, default:None) –matplotlib.axes.Axes to plot in.
-
args– -
kwargs–
Returns:
-
im(AxesImage) –Reference to plotted image matplotlib.image.AxesImage
Source code in src/prettypyplot/pyplot.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
plot(*args, ax=None, **kwargs)
¶
Plot simple lineplot.
Wrapping pyplot.plot() to adjust to style. For more information on the
arguments see in matplotlib documentation.
If STYLE='minimal', spines will be limited to plotting range.
Parameters:
-
ax(Axes, default:None) –matplotlib.axes.Axes to plot in.
-
args– -
kwargs–
Returns:
-
lines(list of Line2D) –A list of matplotlib.lines.Line2D representing the plotted data.
Source code in src/prettypyplot/pyplot.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
savefig(fname, reference_ax=None, use_canvas_size=True, **kwargs)
¶
Save figure as png and pdf.
This methods corrects figsize for poster/beamer mode.
Parameters:
-
fname(str) –Output filename. If no file ending, pdf will be used.
-
reference_ax(Axes, default:None) –matplotlib.axes.Axes used for resizing. If
Nonefirst axes of figure is used. -
use_canvas_size(bool, default:True) –If True the specified figsize will be used as canvas size.
-
kwargs–
Source code in src/prettypyplot/pyplot.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | |
show(reference_ax=None, use_canvas_size=True, **kwargs)
¶
Show figure and rescale similar to pplt.savefig.
Parameters:
-
reference_ax(Axes, default:None) –matplotlib.axes.Axes used for resizing. If
Nonefirst axes of figure is used. -
use_canvas_size(bool, default:True) –If True the specified figsize will be used as canvas size.
-
kwargs–
Source code in src/prettypyplot/pyplot.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
legend(*args, outside=False, ax=None, axs=None, deduplicate=True, **kwargs)
¶
Generate a nice legend.
This is a wrapper of pyplot.legend(). Take a look there for the default
arguments and options. The ticks and labels are moved to the opposite side.
For top and bottom the default value of columns is set to the number of
labels, for all other options to 1. In case of many labels this parameter
needs to be adjusted.
When axs is provided without ax, the legend spans the full extent of
all given axes. outside must be set to 'top', 'bottom', or 'right'
in this case. For 'top' and 'bottom' the legend spans the full width
(including the space between the axes); for 'right' it is vertically
centred across all axes.
Note
Use handles and labels from *args if provided
Example
Checkout the gallery for an example.
Parameters:
-
outside(str or bool, default:False) –False, 'top', 'right', 'bottom' or 'left'.
-
axs(list of Axes, default:None) –List of matplotlib.axes.Axes which are used for extracting all labels. When provided without
ax,outsidemust be'top','bottom', or'right'and the legend is placed at figure level spanning all axes. -
ax(Axes, default:None) –matplotlib.axes.Axes which is used for placing legend.
-
deduplicate(bool, default:True) –If
True(default), duplicate legend entries with the same label and visual appearance are removed. Set toFalseto keep all entries. -
args– -
kwargs–
Returns:
-
leg(Legend) –[matplotlib.legend.Legend] legend handle.
Source code in src/prettypyplot/pyplot.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | |
activate_axis(position, ax=None)
¶
Shift the specified axis to the opposite side.
Parameters:
-
position(str or list of str) –Specify axis to flip, one of
['left', 'right', 'top', 'bottom']. -
ax(Axes, default:None) –matplotlib.axes.Axes axes to flip axis.
Source code in src/prettypyplot/pyplot.py
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 | |
colorbar(im, width='7%', pad='0%', position='right', label=None, **kwargs)
¶
Generate colorbar of same height as image.
Wrapper around pyplot.colorbar which corrects the height.
Example
Checkout the gallery for an example.
Parameters:
-
im(AxesImage) –Specify the object the colorbar belongs to, e.g. the return value of matplotlib.pyplot.imshow.
-
width(str or float, default:'7%') –The width between figure and colorbar stated relative as string ending with '%' or absolute value in inches.
-
pad(str or float, default:'0%') –The width between figure and colorbar stated relative as string ending with '%' or absolute value in inches.
-
position(str, default:'right') –Specify the position relative to the image where the colorbar is plotted, choose one of ['left', 'top', 'right', 'bottom']
-
label(str, default:None) –Specify the colorbar label.
-
kwargs–Colorbar properties of, matplotlib.pyplot.colorbar.
Returns:
-
colorbar(Colorbar) –matplotlib.colorbar.Colorbar instance.
Source code in src/prettypyplot/pyplot.py
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 | |
grid(*args, ax=None, **kwargs)
¶
Generate grid.
This function will add a major and minor grid in case of STYLE='default', a major grid in case of 'none' and otherwise nothing.
Parameters:
-
ax(Axes, default:None) –[matplotlib.axes.Axes] axes to plot grid.
-
args– -
kwargs–
Source code in src/prettypyplot/pyplot.py
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 | |