Tagged Questions

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 ...
8
votes
1answer
136 views

Same equation, different answers from Pylab and Octave

I am porting code created in octave into pylab. One of the ported equations gives dramatically different results in python than it does in octave. The best way to explain is to show plots ...
7
votes
3answers
499 views

how to draw a heart with pylab

How to draw a heart with pylab? I searched with google for ways to draw the picture but i want know how to draw it with pylab. Can someone help? The picture should look like this:
6
votes
2answers
803 views

How to save a figure remotely with pylab?

I'm trying to generate a figure at a remote computer with the command pylab.savefig. But I got such error: Unable to access the X Display, is $DISPLAY set properly? How can I save the figure ...
5
votes
2answers
151 views

Off by one error in imshow?

I'm plotting a PGM image: Here's the data I'm using. The problem is some of the shown pixels are wrong. For example: the three grey boxes near the top of the image are of value 11 (so they should ...
5
votes
2answers
282 views

Plot multidimensional data

I have records of members in a club and their interests, as in the following: Member A: Football, Swimming Member B: Swimming, Jooga, Jogging Member C: Cycling, Football Member D: Football, Tennis, ...
4
votes
1answer
185 views

Drawing ellipses on matplotlib basemap projections

I am trying to draw ellipses on a basemap projection. To draw a circle like polygon there is the tissot function used to draw Tissot's indicatrix' as illustrates the following example. from ...
4
votes
1answer
307 views

matplotlib Legend Markers Only Once

I often plot a point on a matplotlib plot with: x = 10 y = 100 plot(x, y, "k*", label="Global Optimum") legend() However, this causes the legend to put a star in the legend twice, such that it ...
4
votes
1answer
316 views

Change figure window title in pylab

How can I set a figure window's title in pylab/python? fig = figure(9) # 9 is now the title of the window fig.set_title("Test") #doesn't work fig.title = "Test" #doesn't work
4
votes
4answers
468 views

Python Headless MatplotLib / Pyplot

I'm trying to make my data analysis and reports less eye stabbing and more graphical with automatically generated graph-files, and to do this I've been playing with matplotlib/pyplot/pylab. Works ...
4
votes
1answer
309 views

Get legend as a seperate picture in Matplotlib

I'm developing a Web application and want to display a figure and its legend in different locations on the page. Which means I need to save the legend as a separate png file. Is this possible in ...
4
votes
2answers
776 views

MatPlotLib: Multiple datasets on the same scatter plot

I want to plot multiple data sets on the same scatter plot: cases = scatter(x[:4], y[:4], s=10, c='b', marker="s") controls = scatter(x[4:], y[4:], s=10, c='r', marker="o") show() The above only ...
4
votes
3answers
2k views

Matplotlib/pyplot: How to enforce axis range?

I would like to draw a standard 2D line graph with pylot, but force the axes' values to be between 0 and 600 on the x, and 10k and 20k on the y. Let me go with an example... import pylab as p ...
4
votes
3answers
594 views

Get the list of figures in matplotlib

I would like to: pylab.figure() pylab.plot(x) pylab.figure() pylab.plot(y) # ... for i, figure in enumerate(pylab.MagicFunctionReturnsListOfAllFigures()): figure.savefig('figure%d.png' % i) What ...
4
votes
3answers
4k views

How can I show figures separately in matplotlib?

Say that I have two figures in matplotlib, with one plot per figure: import matplotlib.pyplot as plt f1 = plt.figure() plt.plot(range(0,10)) f2 = plt.figure() plt.plot(range(10,20)) Then I show ...
3
votes
1answer
67 views

Error using matplotlib.figure vs pylab when using ginput

I am trying to get user selected points (to get a polygon) from an image. I have already embedded a matplotlib.figure in a lot of my code, so I would MUCH prefer to use this style over pylab's figure. ...
3
votes
1answer
313 views

pylab ImportError: No module named _thread

From ubuntu 10.04, I installed pylab with easy_install. After some upgrade, I can import pylab. First I run ipython installed from easy_install: $ ipython Python 2.6.5 (r265:79063, Apr 16 2010, ...
3
votes
1answer
125 views

sort eigenvalues and associated eigenvectors after using numpy.linalg.eig in python

I'm using numpy.linalg.eig to obtain a list of eigenvalues and eigenvectors: A = someMatrixArray from numpy.linalg import eig as eigenValuesAndVectors solution = eigenValuesAndVectors(A) ...
3
votes
1answer
94 views

limiting the data to the desired values

I have a code plotting the lines in the image on left hand side above. I would like to select an area (a rectangular showed on the right side of the image above) and figure out which lines corresponds ...
3
votes
2answers
318 views

How to display an image with Pylab from a script in a non blocking way

I am writing some iterative image processing algorithm in a script (I don't want to be using iPython), and I would like to visualize the image I generate after each iteration. That's very easy to do ...
3
votes
1answer
1k views

Plot/scatter position and marker size in the same coordinates

I am trying to programmatically display various types of diagrams in pylab. pylab's scatter function displays markers at different co-ordinates in temrs of its axis, but the marker sizes are in terms ...
3
votes
2answers
568 views

How to make 3D plots in Python?

This is the MATLAB version of the 3D plotting code: EDIT: This is the current code: plt.figure(2) fig_b = Axes3D(fig2) xx2 = np.arange(0, L+h_grid*L, h_grid*L) yy2 = ...
3
votes
4answers
3k views

matplotlib.pyplot/pylab not updating figure while isinteractive(), using ipython -pylab

There are a lot of questions about matplotlib, pylab, pyplot, ipython, so I'm sorry if you're sick of seeing this asked. I'll try to be as specific as I can, because I've been looking through ...
3
votes
4answers
864 views

How to use python, PyLab, NumPy, etc for my Physics lab class over excel

Hey all, I took a scientific programming course this semester that I really enjoyed and experimented with a lot. We used python, and all the related modules. I am taking a physics lab next semester ...
3
votes
2answers
3k views

How to scale matplotlib subplot heights individually

Using matplotlib/pylab.... How do I plot 5 heatmaps as subplots which have the same number of columns but different row counts? In other words, I need each subplot's height to be scaled differently. ...
2
votes
1answer
105 views

Documenting files with “from x import *”

Can sphinx's .. automodule:: and other automatic features be used to document modules that include from x import * statements without including all of the documentation from imported modules? EDIT: ...
2
votes
1answer
55 views

how to save a pylab figure into in-memory file which can be read into PIL image?

new to PIL, but want to get a quick solution out of it. The following is my first shot which never works: import cStringIO import pylab from PIL import Image pylab.figure() pylab.plot([1,2]) ...
2
votes
2answers
74 views

removing leading 0 from matplotlib tick label formatting

How can I change the ticklabels of numeric decimal data (say between 0 and 1) to be "0", ".1", ".2" rather than "0.0", "0.1", "0.2" in matplotlib? For example, hist(rand(100)) xticks([0, .2, .4, .6, ...
2
votes
1answer
59 views

Connecting two points with a line in a plot in python

Basically what I have to do is draw a NxN grid within certain boundaries given by a boundingBox and write a function for that. My idea is that I should draw horizontal and vertical lines and ...
2
votes
1answer
65 views

Add footnote under the x-axis using matplotlib

I couldn't find the right function to add a footnote in my plot. The footnote I want to have is something like an explanation of one item in the legend, but it is too long to put in the legend box. ...
2
votes
1answer
43 views

Pyplot - rescaling y axis after limiting x axis

I'm trying to plot some data using pyplot, and then 'zoom in' by using xlim() the x axis. However, the new plot doesn't rescale the y axis when I do this - am I doing something wrong? Example - in ...
2
votes
3answers
212 views

Matplotlib + Pylab import error

Been struggling to resolve this for most of the day, hoping someone can assist... I'm running python 2.7, have installed matplotlib but when attempting to get started and import pylab I receive ...
2
votes
1answer
94 views

How to change the colour of a scatterplot in a loop/if statement? (Python)

I'm trying to make it so that if the scatterplot for Events is above the Diatomite scatterplot, then the color of the plot changes from blue to red. (Similarly from blue to yellow if otherwise). I've ...
2
votes
1answer
133 views

Numpy/IPython equivalent to Matlab's assignin

I'm in the process of moving some of our internal data visualization/analysis tools from Matlab to IPython/Numpy/Scipy/PyLab. The tools I refer to are Matlab GUIs which do only simple kinds of ...
2
votes
1answer
74 views

How does one close a figure or replace a figure without having to manually close each figure in Python/pylab?

I have searched numerous sites, used plots, subplots, some basic animation, and other roundabout ways, but the figure will not close despite using close(), clf(), etc. I have something like this: ...
2
votes
1answer
173 views

How to add a button to matplotlib.pylab.imshow() dialog?

I want to do additional operations on the image displayed by matplotlib.pyplot.imshow() method. For Example: I want an extra button "Display ROI" where it displays the ROI of the co-ordinates I have ...
2
votes
1answer
240 views

how can I plot 4 histograms on the same graph

I have the following problem: I am using hist() in matplotlib.pyplot I am trying to create 4 histograms on the same graph. and an approximation gaussian for each one of them. how can I plot the 4 ...
2
votes
1answer
186 views

Working with complex numbers in real time with GNU Radio

I need to work with data received from the USRP (using the gr-sounder to be specific), and I'm not exactly sure how I would do that. Are there any python packages I can use to work with the data, and ...
2
votes
1answer
495 views

PyLab: Plotting axes to log scale, but labelling specific points on the axes

Basically, I'm doing scalability analysis, so I'm working with numbers like 2,4,8,16,32... etc and the only way graphs look rational is using a log scale. But instead of the usual 10^1, 10^2, etc ...
2
votes
3answers
1k views

trouble installing rpy2 on win7 (R 2.12, Python 2.5)

I'm brand new to Python (and programming in general) I come from a finance background, so please bear with me. I just started using Python (Enthought's Pylab/Scipy/Numpy) and R for statistical ...
2
votes
1answer
296 views

Plotting graph in python

I'm new to Python am trying to plot a graph based on the pyODE tutorial found here. I'm using pylab for the plotting. Below is the main part of the code and #added represents the code I've added in ...
2
votes
2answers
383 views

Scipy/Pylab error.. Expected in: dynamic lookup?

With a fresh build of Scipy/numpy/matplotlib on python 2.7 on OS X. I am trying to import pylab but it doesn't seem to be working. Why is this? The error I'm getting is: > Traceback (most ...
2
votes
2answers
242 views

how do you radially 'sweep out' a 1D array to plot 3d figure in python? (to represent a wavefunction)

effectively I have a large 1D array of heights. As a small example consider: u=array([0,1,2,1,0,2,4,6,4,2,1]) and a 1D array, the same size as u, of radial values which the heights correspond to, ...
2
votes
2answers
166 views

Threading to quickly create a large number of charts

I have been trying to find ways to make the following piece of code perform faster: def do_chart(target="IMG_BACK", xlabel="xlabel", ylabel="ylabel", title="title", ydata=pylab.arange(1961, ...
2
votes
1answer
284 views

How do I remove the y-axis from a Pylab-generated picture?

import pylab # matplotlib x_list = [1,1,1,1,5,4] y_list = [1,2,3,4,5,4] pylab.plot(x_list, y_list, 'bo') pylab.show() What I want to do is remove the y-axis from the diagram, only keeping the ...
2
votes
1answer
1k views

color plot animation with play, pause, stop cabability using Tkinter with pylab/matplotlib embedding: can't update figure/canvas?

I've looked but didn't find previous questions specific enough, so sorry if this is repeated. Goal: GUI to continuously update figure with different matrix data plotted by pylab's pcolor such that ...
2
votes
2answers
889 views

Possible to use pyplot without DISPLAY?

I'm working remotely on a machine that's pretty restrictive. I can't install any software, and it won't accept my X11 session, so I have no display. The machine currently has pylab installed, and I'd ...
2
votes
2answers
786 views

Putting newline in matplotlib label with TeX in Python?

How can I add a newline to a plot's label (e.g. xlabel or ylabel) in Matplotlib? For example, plt.bar([1, 2], [4, 5]) plt.xlabel("My x label") plt.ylabel(r"My long label with $\Sigma_{C}$ math \n ...
2
votes
1answer
635 views

Variable alpha blending in pylab

How does one control the transparency over a 2D image in pylab? I'd like to give two sets of values (X,Y,Z,T) where X,Y are arrays of positions, Z is the color value, and T is the transparency to a ...
2
votes
1answer
161 views

Reusing module references in Python (Matplotlib)

I think I may have misunderstood something here... But here goes. I'm using the psd method in matplotlib inside a loop, I'm not making it plot anything, I just want the numerical result, so: import ...

1 2 3