About 50 results
Open links in new tab
  1. python - matplotlib documentation in html format - Stack Overflow

    May 30, 2014 · matplotlib documentation in html format [closed] Asked 13 years ago Modified 11 years, 8 months ago Viewed 6k times

  2. python - What is the difference between drawing plots using plot, axes ...

    Jun 22, 2016 · I'm kind of confused what is going at the backend when I draw plots in matplotlib, tbh, I'm not clear with the hierarchy of plot, axes and figure. I read the documentation and it was helpful but I'm

  3. python - Named colors in matplotlib - Stack Overflow

    For more details, please refer to the matplotlib colors documentation and the source file specifying the available colors, _color_data.py.

  4. Python - matplotlib - differences between subplot() and subplots()

    Sep 7, 2018 · 1. matplotlib.pyplot.subplots() From the documentation page on matplotlib.pyplot.subplots(): This utility wrapper makes it convenient to create common layouts of …

  5. How to view all colormaps available in matplotlib?

    Dec 16, 2015 · I was wondering if there is a function call that can give me the name of all colormaps available in matplotlib? It used to be possible by something along the lines of (see here): import …

  6. Specify format of floats for tick labels - Stack Overflow

    plt.gca().yaxis.set_major_formatter(StrMethodFormatter()) # 2 decimal places From the : class matplotlib.ticker.StrMethodFormatter (fmt) Use a new-style format string (as used by str.format ()) to …

  7. Python Matplotlib Venn diagram - Stack Overflow

    Nov 1, 2017 · There is a beautiful Venn diagram add-on for matplotlib called matplotlib-venn. It looks like it can be completely customized to do what you are looking for, from the size of the circles …

  8. python - Matplotlib table formatting - Stack Overflow

    The matplotlib documentation says Add a table to the current axes. Returns a matplotlib.table.Table instance. For finer grained control over tables, use the Table class and add it to the axes with …

  9. How to set the axis limits in Matplotlib? - Stack Overflow

    I need help with setting the limits of y-axis on matplotlib. Here is the code that I tried, unsuccessfully. import matplotlib.pyplot as plt plt.figure (1, figsize = (8.5,11)) plt.suptitle ('plot tit...

  10. Embedding matplotlib plots in Sphinx: how to show documentation

    May 22, 2015 · I have some ipynb documentation with matplotlib plots shown inline by %matplotlib inline directive. And I have my Sphinx documentation when I try to show my notebook with inline-drawn …