diff --git a/README.md b/README.md index 7169e22..2d19c11 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,7 @@ design in the API, or required feature!
Saner default plots
Matplotlib plots are quite ugly by default, colors are not really suited for optimal black and white print, or ease reading for colorblind - people. This module imports and makes use of - [Seaborn](https://github.com/mwaskom/seaborn) for saner default - params.
+ people. This module defines a clean default colorscheme to solve it.
Support with statement
Ever got tired of having to start any figure with a call to @@ -35,12 +33,12 @@ design in the API, or required feature!
Order of call of methods is no longer important
When calling a method from matplotlib, it is directly applied to the figure, and not deferred to the final render call. Then, if - calling matplotlib.pyplot.legend() **before** having actually - plotted anything, it will fail. This is not the case with - this module, as it abstracts on top of matplotlib and do the - actual render only when the figure is to be shown. Even after - having called the show method, you can still change - everything in your figure!
+ calling matplotlib.pyplot.legend() before + having actually plotted anything, it will fail. This is not + the case with this module, as it abstracts on top of + matplotlib and do the actual render only when the figure is + to be shown. Even after having called the show + method, you can still change everything in your figure!
Does not interfere with matplotlib
You can still use the default matplotlib if you want, as