Forgot to bump README.md
This commit is contained in:
parent
264253ed3e
commit
d672b2873e
16
README.md
16
README.md
@ -15,9 +15,7 @@ design in the API, or required feature!
|
|||||||
<dt>Saner default plots</dt>
|
<dt>Saner default plots</dt>
|
||||||
<dd>Matplotlib plots are quite ugly by default, colors are not really
|
<dd>Matplotlib plots are quite ugly by default, colors are not really
|
||||||
suited for optimal black and white print, or ease reading for colorblind
|
suited for optimal black and white print, or ease reading for colorblind
|
||||||
people. This module imports and makes use of
|
people. This module defines a clean default colorscheme to solve it.</dd>
|
||||||
[Seaborn](https://github.com/mwaskom/seaborn) for saner default
|
|
||||||
params.</dd>
|
|
||||||
|
|
||||||
<dt>Support <code>with</code> statement</dt>
|
<dt>Support <code>with</code> statement</dt>
|
||||||
<dd>Ever got tired of having to start any figure with a call to
|
<dd>Ever got tired of having to start any figure with a call to
|
||||||
@ -35,12 +33,12 @@ design in the API, or required feature!
|
|||||||
<dt>Order of call of methods is no longer important</dt>
|
<dt>Order of call of methods is no longer important</dt>
|
||||||
<dd>When calling a method from <code>matplotlib</code>, it is directly
|
<dd>When calling a method from <code>matplotlib</code>, it is directly
|
||||||
applied to the figure, and not deferred to the final render call. Then, if
|
applied to the figure, and not deferred to the final render call. Then, if
|
||||||
calling <code>matplotlib.pyplot.legend()</code> **before** having actually
|
calling <code>matplotlib.pyplot.legend()</code> <strong>before</strong>
|
||||||
<code>plot</code>ted anything, it will fail. This is not the case with
|
having actually <code>plot</code>ted anything, it will fail. This is not
|
||||||
this module, as it abstracts on top of <code>matplotlib</code> and do the
|
the case with this module, as it abstracts on top of
|
||||||
actual render only when the figure is to be <code>show</code>n. Even after
|
<code>matplotlib</code> and do the actual render only when the figure is
|
||||||
having called the <code>show</code> method, you can still change
|
to be <code>show</code>n. Even after having called the <code>show</code>
|
||||||
everything in your figure!</dd>
|
method, you can still change everything in your figure!</dd>
|
||||||
|
|
||||||
<dt>Does not interfere with <code>matplotlib</code></dt>
|
<dt>Does not interfere with <code>matplotlib</code></dt>
|
||||||
<dd>You can still use the default <code>matplotlib</code> if you want, as
|
<dd>You can still use the default <code>matplotlib</code> if you want, as
|
||||||
|
Loading…
Reference in New Issue
Block a user