Giter Club home page Giter Club logo

matplotlib-tutorial's People

Contributors

eljdp avatar franklinchen avatar joshy avatar jruota avatar rougier avatar smartlixx avatar stefre avatar tommyod avatar zormit avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

matplotlib-tutorial's Issues

Drip drop animation in Jupyter notebook

Hi, thanks for sharing this excellent tutorial.
I am learning it via Jupyter notebook, but I found that the drip drop animation code could not update automatically. Is there any suggestion?
Indeed, it works in python IDE.
Thanks again.

puzzle comment for dip

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 comment is 100, in parameter is 80 ?

Hiding Spines

Hi, thank you for your tutorial, it's been really helpful!

In the 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 elegant solution?

A typo in your blog "Matplotlib tutorial"

I understand that I should not post a typo in your blog here, but this is the only way I can contact you, since your blog points here.

In your blog "Matplotlib tutorial", chapter "Simple Plot", section "Instantiating defaults", # savefig("../figures/exercice_2.png",dpi=72) could be changed to plt.savefig("../figures/exercice_2.png",dpi=72). You might have just missed plt in your code.

I really appreciate your tutorial. It's the best I could find on the web.

Code Documentation

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) -> help(plt.plot) as we have imported
the matplotlib.pyplot as plt so inorder to run the help command for it's functions
help(plt.) would lead to the correct result.

Thank you

#-----------------------------------------------------------
Code documentation

The code is fairly well documented and you can quickly access a specific command from within a python session:

import matplotlib.pyplot as plt
help(plt.plot)
Help on function plot in module matplotlib.pyplot:

plot(*args, **kwargs)
Plot lines and/or markers to the
:class:~matplotlib.axes.Axes. args is a variable length
argument, allowing for multiple x, y pairs with an
optional format string. For example, each of the following is
legal::

   plot(x, y)         # plot x and y using default line style and color
   plot(x, y, 'bo')   # plot x and y using blue circle markers
   plot(y)            # plot y using x as index array 0..N-1
   plot(y, 'r+')      # ditto, but with red plusses

If x and/or y is 2-dimensional, then the corresponding columns
will be plotted.
...
#----------------------------------------------------------

Python v2.7 error in Earthquakes.py

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 = urllib2.urlopen(feed + "4.5_month.csv")

Cheers!
Jen

Python plot similar to Matlab's stackedplot()

Hello,
Is there a plot function available in Python that is same as Matlab's stackedplot()?
stackedplot() in Matlab can line plot several variables with the same X axis and are stacked vertically. Additionally, there is a scope in this plot that shows the value of all variables for a given X just by moving the cursor (please see the plot below). I have been able to generate subplots in Python with no issues, however, not able to add a scope like this that shows the value of all variables by moving the cursor. Is this feature available in Python?

Thanks much for your help in advance!

stackedplot scope2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.