Implemented Methods#
The following methods are available, instead of by giving x and y as
the first two arguments, by giving t, l, r as the first three
arguments:
ax.textax.plotax.scatterax.fillax.tricontourax.tricontourfax.tripcolorax.triplot
Similarly, the following methods are available by giving,
t, l, r, dt, dl, dr as the first six arguments
instead of x, y, dx, dy:
ax.arrowax.quiver
Note
In the methods above, by setting the corresponding transform,
one CAN still pass x and y for the plots onto the Cartesian
coordinates like data, axes, figure, and display coordinates
of Matplotlib Axes.
The following methods are for binned plots.
The first three arguments are for t, l, and r, and gridsize must
be one integer value.
ax.hexbinax.tribin
Furthermore, the following methods and attributes are implemented, which should work as expected from the correspondences of Matplotlib:
- Similarly to
ax.get_xlabelandax.get_ylabel: ax.get_tlabelax.get_llabelax.get_rlabel
- Similarly to
- Similarly to
ax.set_xlabelandax.set_ylabel: ax.set_tlabelax.set_llabelax.set_rlabel
- Similarly to
- Similarly to
ax.axhlineandax.axvline: ax.axtlineax.axllineax.axrline
- Similarly to
- Similarly to
ax.axhspanandax.axvshan: ax.axtspanax.axlspanax.axrspan
- Similarly to
- Similarly to
ax.xaxisandax.yaxis: ax.taxisax.laxisax.raxis
- Similarly to
Note
All the above methods and attributes are designed to be accessible only via the object-oriented API of Matplotlib. The pyplot API may not work as expected.