hikari.utility.artists
Attributes
Exceptions
Exception raised when a problem with plotting in hikari occurs. |
Classes
A factory method for creating artists. |
|
Base class used for plotting matplotlib and gnuplot plots |
|
Base class used for plotting angular heatmaps |
|
Base class used for plotting gnuplot plots |
|
Base class used for plotting matplotlib plots |
|
Base class used for plotting gnuplot angular heatmaps |
|
Base class used for plotting matplotlib angular heatmaps |
Module Contents
- exception hikari.utility.artists.ArtistError(message)[source]
Bases:
ExceptionException raised when a problem with plotting in hikari occurs.
- class hikari.utility.artists.ArtistFactory[source]
A factory method for creating artists.
- _artists
- class hikari.utility.artists.Artist[source]
Base class used for plotting matplotlib and gnuplot plots
- class hikari.utility.artists.AngularHeatmapArtist[source]
Bases:
Artist,abc.ABCBase class used for plotting angular heatmaps
- HEAT_EXTENSION = '.lst'
- HISTOGRAM_EXTENSION = '.his'
- histogram = False
- _x_axis = ()
- _y_axis = ()
- _z_axis = ()
- _focus = ()
- _heat_limits = ()
- _polar_limits = ()
- _azimuth_limits = ()
- property x_axis
- property y_axis
- property z_axis
- property heat_limits
- property focus
- property polar_limits
- property azimuth_limits
- class hikari.utility.artists.GnuplotArtist[source]
Bases:
abc.ABCBase class used for plotting gnuplot plots
- GNUPLOT_EXTENSION = '.gnu'
- _heat_palette
- property heat_palette
- class hikari.utility.artists.MatplotlibArtist[source]
Bases:
abc.ABCBase class used for plotting matplotlib plots
- _heat_palette
- property heat_palette
- class hikari.utility.artists.GnuplotAngularHeatmapArtist[source]
Bases:
GnuplotArtist,AngularHeatmapArtistBase class used for plotting gnuplot angular heatmaps
- template
- property focus_string
- class hikari.utility.artists.MatplotlibAngularHeatmapArtist[source]
Bases:
MatplotlibArtist,AngularHeatmapArtistBase class used for plotting matplotlib angular heatmaps
- MESH_EXTENSION = '.dat'
- hikari.utility.artists.artist_factory