Plotting utility methods.
Functions
Call all configure-functions in this module. |
|
Configure Matplotlib figure plotting. |
|
Configure Seaborn figure plotting. |
|
|
Decorate an axis by setting the labels to multiples of pi. |
Classes
|
Protocol class indicating something that as an X-axis. |
Bases: Protocol
Protocol class indicating something that as an X-axis.
Configure Seaborn figure plotting.
Caveat Emptor: May do strange stuff 👻.
ModuleNotFoundError – If Seaborn is not installed.
Configure Matplotlib figure plotting.
Caveat Emptor: May do strange stuff 👻.
ModuleNotFoundError – If matplotlib is not installed.
Decorate an axis by setting the labels to multiples of pi.
The half_rep must be one of:
‘frac’: output 0/2π, 1/2π, 2/2π, 3/2π..
‘dec’: output 0.0π, 0.5π, 1.0π, 1.5π..
None: output 0, π, 2π, 3π..
ax – An axis to decorate, or an object with an xaxis attribute.
half_rep – Controls how fractions of pi are represented on the x-axis.