diff --git a/Examples.ipynb b/Examples.ipynb index 01e1b7e..5ea53c8 100644 --- a/Examples.ipynb +++ b/Examples.ipynb @@ -20611,7 +20611,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 35, "metadata": { "collapsed": false }, @@ -21383,7 +21383,7 @@ { "data": { "text/html": [ - "" + "" ], "text/plain": [ "" @@ -21400,7 +21400,7 @@ " x = range(10)\n", " figure.xlabel = \"xlabel\"\n", " figure.ylabel = \"ylabel\"\n", - " figure.plot(x, x, rotate=0)" + " figure.plot(x, x, rotate=90)" ] }, { diff --git a/README.md b/README.md index 83c7496..5e4167d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,15 @@ Replot ====== - This repo is an attempt for a better API to plot graphs with [Matplotlib](http://matplotlib.org/) in Python. + +`Matplotlib` is a wonderful Python modules to plot data series, functions and +so on. However, I think the API is quite verbose. This is an attempt at +providing a better frontend API on top of `matplotlib` for easy and fast +plotting, especially at prototyping time. + ## Features These are the current features. I will extend the module whenever I feel the @@ -98,8 +103,7 @@ reuse. For more details, see `LICENSE.txt` file. ## Thanks -* [Matplotlib](http://matplotlib.org/) for their really good backend (but - not for their terrible API) +* [Matplotlib](http://matplotlib.org/) for their really good backend. * [Seaborn](https://github.com/mwaskom/seaborn) and [prettyplotlib](http://blog.olgabotvinnik.com/prettyplotlib/) which gave me the original idea.