Top "Matplotlib" questions

Matplotlib is a plotting library for Python which may be used interactively or embedded in stand-alone GUIs.

Label axes on Seaborn Barplot

I'm trying to use my own labels for a Seaborn barplot with the following code: import pandas as pd import …

python matplotlib seaborn
Is there a way to detach matplotlib plots so that the computation can continue?

After these instructions in the Python interpreter one gets a window with a plot: from matplotlib.pyplot import * plot([1,2,3]) show() # …

python matplotlib plot
How to remove frame from matplotlib (pyplot.figure vs matplotlib.figure ) (frameon=False Problematic in matplotlib)

To remove frame in figure, I write frameon=False works perfect with pyplot.figure, but with matplotlib.Figure it only …

python matplotlib
A tool to convert MATLAB code to Python

I have a bunch of MATLAB code from my MS thesis which I now want to convert to Python (using …

python matlab numpy matplotlib scipy
Date ticks and rotation in matplotlib

I am having an issue trying to get my date ticks rotated in matplotlib. A small sample program is below. …

python matplotlib
How do I get interactive plots again in Spyder/IPython/matplotlib?

I upgraded from Python(x,y) 2.7.2.3 to 2.7.6.0 in Windows 7 (and was happy to see that I can finally type function_…

python matplotlib ipython spyder
python plot normal distribution

Given a mean and a variance is there a simple function call which will plot a normal distribution?

python matplotlib
matplotlib: colorbars and its text labels

I'd like to create a colorbar legend for a heatmap, such that the labels are in the center of each …

python matplotlib label legend colorbar
surface plots in matplotlib

I have a list of 3-tuples representing a set of points in 3D space. I want to plot a surface …

python numpy matplotlib surface
matplotlib error - no module named tkinter

I tried to use the matplotlib package via Pycharm IDE on windows 10. when I run this code: from matplotlib import …

python matplotlib tkinter