matplotlib-tutorial icon indicating copy to clipboard operation
matplotlib-tutorial copied to clipboard

Matplotlib tutorial for beginner

Results 7 matplotlib-tutorial issues
Sort by recently updated
recently updated
newest added

Awesome Work! Thank you for creating such an amazing tutorial. Just one note though, in your Beyond This Tutorial -> Code Documentation You might want to change the help(plt) ->...

Salut, I'm thinking you should maybe remove the (very) few references to pylab in your tutorial, as the offcial documentation now says "[The pylab API (disapproved)](https://matplotlib.org/api/index.html?highlight=pylab#the-pylab-api-disapproved)"

Hi, thank you for your tutorial, it's been really helpful! In the [Moving Spines](https://github.com/rougier/matplotlib-tutorial#moving-spines) section, you've used `ax.spines['right'].set_color('none')` to hide the axis. I wonder if `ax.spines['right'].set_visible(False)` would be a more...

At "Instantiating defaults", ``` > # Create a new figure of size 8x6 points, using 100 dots per inch >plt.figure(figsize=(8,6), dpi=80) ``` dpi means "dots per inch", why dpi in...

We discovered in the SciPy Tutorial that the url line should be updated for people running Python V 2.7 import urllib2 and line #26 should be changed to: url =...