Matplotlib is a 2D plotting library for Python, built on numpy and often used interactively with ipython. Its "pylab" interface is similar to the plotting functions of MATLAB®.

learn more… | top users | synonyms

32
votes
4answers
24k views

How do you change the size of figures drawn with matplotlib?

How do you change the size of figure drawn with matplotlib?
28
votes
1answer
543 views

How do I configure the behavior of the Qt4Agg backend?

In an earlier question I learned that the behavior on show() was dependent on the backend in use by matplotlib. At that time I was looking for a way to keep show() from deleting the drawing elements ...
22
votes
0answers
406 views
+50

change strength of antialiasing in matplotlib

Is it possible to increase the antialiasing in matplotlib? I can still see some aliasing in my data, I tried several backends and it is still there. The antialiasing flag of the lines is set. Here ...
20
votes
1answer
480 views

matplotlib: Centering period labels under the period's data in a time-series plot

matplotlib's axis-formatting options tend to fall flat when it comes to plotting and effectively labeling dense time-series data. One problem is that tick labels are tied to ticks, so if you set axis ...
18
votes
4answers
1k views

Generating movie from python without saving individual frames to files

I would like to create an h264 or divx movie from frames that I generate in a python script in matplotlib. There are about 100k frames in this movie. In examples on the web [eg. 1], I have only seen ...
17
votes
4answers
6k views

gnuplot vs Matplotlib

I've started on a project graphing Tomcat logs using gnuplot-py, specifically correlating particular requests with memory allocation and garbage collection. What is the collective wisdom on ...
15
votes
4answers
2k views

Why does pip install matplotlib version 0.91.1 when PyPi shows version 1.0.0?

PyPi shows matplotlib 1.0.0. However, when I install matplotlib via pip into a virtualenv, version 0.91.1 is installed. Why the difference in versions? Is there a way to pip install matplotlib ...
15
votes
17answers
11k views

What is the best plotting library for Python? [closed]

What Python plotting library do you recommend? It should be noted the following considerations: is it cross-OS? speed how clean it's interface? "prettyness" of the resulting plots License etc? In ...
14
votes
1answer
3k views

Text box in matplotlib?

Is it possible to display text in a box through Matplotlib, with automatic line breaks? By using pyplot.text(), I was only able to print multi-line text that flows beyond the boundaries of the ...
13
votes
2answers
877 views

Python/Matplotlib - Is there a way to make a discontinuous axis?

I'm trying to create a plot using pyplot that has a discontinuous x-axis. The usual way this is drawn is that the axis will have something like this: (values)----//----(later values) where the // ...
13
votes
3answers
1k views

saving interactive matplotlib figures

Is there a way to save a matplotlib figure such that it can be re-opened and have typical interaction restored? (Like the .fig format in matlab?) I find myself running the same scripts many times ...
13
votes
2answers
4k views

Need help with matplotlib

I just installed matplotlib and am trying to run one of there example scripts. However I run into the error detailed below. What am I doing wrong? from mpl_toolkits.mplot3d import axes3d import ...
13
votes
4answers
3k views

Matplotlib not showing up in Mac OSX

I am running Mac OSX 10.5.8. I installed matplotlib using macports. I get some examples from the matplotlib gallery like this one, without modification: ...
13
votes
3answers
4k views

Python Matplotlib rectangular binning

I've got a series of (x,y) values that I want to plot a 2d histogram of using python's matplotlib. Using hexbin, I get something like this: But I'm looking for something like this: Example Code: ...
13
votes
3answers
16k views

Plot logarithmic axes with matplotlib in python

I want to plot a graph with one logarithmic axis using matplotlib. I've been reading the docs, but can't figure out the syntax. I know that it's probably something simple like 'scale=linear' in the ...
12
votes
1answer
239 views

Parallel Coordinates plot in Matplotlib

Two and three dimensional data can be viewed relatively straight-forwardly using traditional plot types. Even with four dimensional data, we can often find a way to display the data. Dimensions ...
12
votes
1answer
1k views

in Matplotlib, what does “111” means in fig.add_subplot(111)?

I've been reading like crazy the documentation but i cant find an explication for the "111".. sometimes i see a 212. It'd be great if you could explain it to me or give me the link in the ...
12
votes
7answers
6k views

Compile Matplotlib for Python on Snow Leopard

I've killed half a day trying to compile matplotlib for python on Snow Leopard. I've used the googles and found this helpful page (http://blog.hyperjeff.net/?p=160) but I still can't get it to ...
11
votes
4answers
6k views

How to put the legend out of the plot

I have a series of 20 plots (not subplots) to be made in a single figure. I want the legend to be outside of the box. At the same time, I do not want to change the axes, as the size of the figure ...
11
votes
8answers
3k views

Graphing in Python 3.x

In Python 2.6, I used matplotlib to make some simple graphs. However, it is incompatible with Python 3.1. What are some alternative modules that can accomplish the same thing without being very ...
11
votes
3answers
8k views

Generate a heatmap in MatPlotLib using a scatter data set

I have a set of X,Y data points (about 10k) that are easy to plot as a scatter plot but that I would like to represent as a heatmap. I looked through the examples in MatPlotLib and they all seem to ...
10
votes
1answer
1k views

plotting results of hierarchical clustering ontop of a matrix of data in python

How can I plot a dendrogram right on top of a matrix of values, reordered appropriately to reflect the clustering, in Python? An example is in the bottom of the following figure: ...
10
votes
2answers
11k views

Python, Matplotlib, subplot: How to set the axis range?

How can I set the y axis range of the second subplot to e.g. [0,1000] ? The FFT plot of my data (a column in a text file) results in a (inf.?) spike so that the actual data is not visible. ...
10
votes
2answers
779 views

HOW TO: Draggable legend in matplotlib

QUESTION: I'm drawing a legend on an axes object in matplotlib but the default positioning which claims to place it in a smart place doesn't seem to work. Ideally, I'd like to have the legend be ...
10
votes
2answers
3k views

plotting time in python with matplotlib

I have an array of timestamps in the format (HH:MM:SS.mmmmmm) and another array of floating point numbers, each corresponding to a value in the timestamp array. Can I plot time on the x axis and the ...
10
votes
3answers
3k views

How can I remove the top and right axis in matplotlib?

Instead of the default "boxed" axis style I want to have only the left and bottom axis, i.e.: +------+ | | | | | | ---> | | | | +------+ +------- ...
9
votes
2answers
298 views

Store and reload matplotlib.pyplot object

I work in an psudo-operational environment where we make new imagery on receipt of data. Sometimes when new data comes in, we need to re-open an image and update that image in order to create ...
9
votes
2answers
1k views

plotting 3d scatter in matplotlib

I have a collection of Nx3 matrices in scipy/numpy and I'd like to make a 3 dimensional scatter of it, where the X and Y axes are determined by the values of first and second columns of the matrix, ...
9
votes
1answer
1k views

Matplotlib: How to put individual tags for a scatter plot

I am trying to do a scatter plot in Matplotlib and I couldn't find a way to add tags to the points. For example: scatter1=plt.scatter(data1["x"], data1["y"], marker="o", ...
9
votes
2answers
493 views

Matplotlib transparent line plots

I am plotting two similar trajectories in matplotlib and I'd like to plot each of the lines with partial transparency so that the red (plotted second) doesn't obscure the blue. EDIT: Here's the ...
9
votes
2answers
2k views

How to create a density plot in matplotlib?

In R I can create the desired output by doing: data = c(rep(1.5, 7), rep(2.5, 2), rep(3.5, 8), rep(4.5, 3), rep(5.5, 1), rep(6.5, 8)) plot(density(data, bw=0.5)) In python (with ...
9
votes
4answers
3k views

matplotlib: format axis offset-values to whole numbers or specific number

I have a matplotlib figure which I am plotting data that is always referred to as nanoseconds(1e-9). On the y-axis, if I have data that is tens of nanoseconds, ie. 44e-9, the value on the axis shows ...
9
votes
1answer
1k views

How can I plot NaN values as a special color with imshow in matplotlib?

I am trying to use imshow in matplotlib to plot data as a heatmap, but some of the values are NaNs. I'd like the NaNs to be rendered as a special color not found in the colormap. example: import ...
9
votes
2answers
2k views

Python web hosting: Numpy, Matplotlib, Scientific Computing

I write scientific software in Numpy/Scipy/Matplotlib. Having developed applications on my home computer, I am now interested in writing simple web applications. Example: user uploads image or audio ...
9
votes
2answers
5k views

Python with matplotlib - drawing multiple figures in parallel

I'm have functions that contribute small parts of a figure generation. What I'm trying to do is to use these functions to generate multiple figures? So something like this: work with Figure 1 do ...
8
votes
1answer
306 views

Matplotlib Backend Differences between Agg and Cairo

Hej, I'd like to produce high quality PDFs from matplotlib plots. Using other code, I have produced a large array of numbers, which I plot in a figure using plt.imshow. If I now produce a PDF using ...
8
votes
1answer
217 views

matplotlib multiple connections to an event handler?

import sys import matplotlib import matplotlib.pyplot as plt print matplotlib.__version__, matplotlib.get_backend() def hit(event): sys.stderr.write('hit\n') fig = plt.figure() cid0 = ...
8
votes
2answers
1k views

Generating matplotlib graphs without a running X server

Matplotlib seems to require the $DISPLAY environment variable which means a running X server.Some web hosting services do not allow a running X server session.Is there a way to generate graphs using ...
8
votes
6answers
1k views

Plotting implicit equations in 3d

I'd like to plot implicit equation F(x,y,z) = 0 in 3D. Is it possible in Matplotlib?
8
votes
1answer
398 views

Is there a matplotlib equivalent of matlab's datacursormode?

In matlab, one can use datacursormode to add annotation to a graph when user mouses over. Is there such thing in matplotlib? Or I need to write my own event using matplotlib.text.Annotation? Many ...
8
votes
3answers
1k views

How do I display real-time graphs in a simple UI for a python program?

I have a complicated algorithm that updates 3 histograms that are stored in arrays. I want to debug my algorithm, so I was thinking of showing the arrays as histograms in a user interface. What is ...
8
votes
2answers
1k views

How do I plot multiple X or Y axes in matplotlib?

I'm currently using matplotlib to plot a measurement against 2 or 3 other measurements (sometimes categorical) on the x-axis. Currently, I am grouping the data on the x-axis into tuples and sorting ...
8
votes
4answers
670 views

GOOD matplotlib documentation recommendation

I am new to matplotlib, and after reading the official documentation, I am quite frustrated with it. Could anyone kind enough to recommend a GOOD documentation or user manual or tutorial to learn ...
8
votes
3answers
2k views

Anyone knows a matplotlib equivalent in C or C++

I've been using matplotlib in a Python project. It is great. I have now to plot data in a C++ project. Is anyone aware of a plotting library in C or C++? Note that I cannot accept GPL licensed ...
8
votes
1answer
3k views

Hiding axis text in matplotlib plots

I'm trying to plot a figure without tickmarks or numbers on either of the axes (I use axes in the traditional sense, not the matplotlib nomenclature!). An issue I have come across is where (for ...
8
votes
3answers
2k views

PyPlot reverse Y-Axis

I have a scatter plot graph with a bunch of random x,y coordinates. Currently the Y-Axis starts at 0 and goes up to the max value. I would like the Y-Axis to start at the max value and go up to 0. ...
8
votes
5answers
2k views

Command-line Unix ASCII-based charting / plotting tool

Is there a good command-line UNIX charting / graphing / plotting tool out there? I'm looking for something that will plot xy points on an ASCII graph. Just to clarify, I'm looking for something that ...
7
votes
3answers
179 views

Counting points inside an ellipse

I'm trying to count given data points inside each ring of ellipse: The problem is that I have a function to check that: so for each ellipse, to make sure whether a point is in it, three inputs have ...
7
votes
4answers
280 views

Efficiently generate a lattice of points in python

Help make my code faster: My python code needs to generate a 2D lattice of points that fall inside a bounding rectangle. I kludged together some code (shown below) that generates this lattice. ...
7
votes
3answers
249 views

Interactive plotting in Python?

Matlab and Mathematica both have features that allow the user to manipulate the contents of a plot using, say, a slider. For example, if you have a set of 3D data, it is easy to make a small program ...

1 2 3 4 5 26