Mainly to enable plotting in IPython _repr_html_ for fast visual checking while using notebooks.
Does not create dependency on matplotlib, but add it as an extra plot.
Methods only present if matplotlib available within current environement, otherwise raise RuntimeError.
Not all types using the ReprMixin must implement the plot function. If not overidden, a TypeError is raised, which users of the plot method have to be aware of (_repr_html_ just returns the property table alone in this case).
Closes #81
_repr_html_
for fast visual checking while using notebooks.plot
.RuntimeError
.ReprMixin
must implement the plot function. If not overidden, aTypeError
is raised, which users of theplot
method have to be aware of (_repr_html_
just returns the property table alone in this case).