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 ...
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
804 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 ...
6
votes
2answers
3k views
Matplotlib Color Palette
Is it possible to change what colors Matplotlib cycles through when it is generating its own colors for a graph's lines? I'm using the pylab module.
from pylab import *
import matplotlib.cm as cm
...
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, ...
5
votes
1answer
2k views
Matplotlib: draw grid lines behind other graph elements
In Matplotlib, I make dashed grid lines as follows:
fig = pylab.figure()
ax = fig.add_subplot(1,1,1)
ax.yaxis.grid(color='gray', linestyle='dashed')
however, I can't find out how (or even if it ...
4
votes
1answer
188 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
470 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
595 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 ...
4
votes
2answers
3k views
Vertical xtick labels on top, not bottom
I want to plot a confusion matrix using Pylab. The class labels along the horizontal axis are long, so I want to plot them rotated vertically. However, I also want to plot them on top of the axis, not ...
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
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
569 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
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
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
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
3answers
213 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
33 views
snap hlines and vlines to whole pixels in matplotlib
I want to draw some hlines and vlines snapped to occupy whole pixels on the screen,
not spread across several pixels (rendered, antialiased) as usual.
Is there a transform T() so that
vlines( T(x), ...
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
496 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
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
243 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
285 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
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
3answers
2k views
Matplotlib subplots_adjust hspace so titles and xlabels don't overlap?
With say 3 rows of subplots in matplotlib, xlabels of one row can overlap the title of the next;
one has to fiddle with pl.subplots_adjust( hspace ), annoying.
Is there a recipe for hspace that ...
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 ...
2
votes
2answers
2k views
Resize a figure automatically in matplotlib
Is there a way to automatically resize a figure to properly fit contained plots in a matplotlib/pylab image?
I'm creating heatmap (sub)plots that differ in aspect ratio according to the data used.
...
2
votes
2answers
2k views
Scaling the y-axis with Matplotlib in Python
How to scale the y-axis with Matplotlib? I don't want to change the y-limit, I just want to extend the physical space.
^ ^
| |
| |
+----> |
Before +---->
After
1
vote
1answer
11 views
how to embed fonts in PDFs produced by matplotlib?
I'm using a font called a ttf font called FreeSans on linux with matplotlib. I create my figure as:
from matplotlib import rc
plt.rcParams['ps.useafm'] = True
...
1
vote
1answer
21 views
customizing just one side of tick marks in matplotlib using spines
I have a matplotlib horizontal bar drawn as follows:
import matplotlib.pyplot as plt
from numpy import *
from scipy import *
bars = arange(5) + 0.1
vals = rand(5)
print bars, vals
...
1
vote
3answers
107 views
Append large lists in python2.7
I am using matplotlib to plot a graph with the points ([0,0,0],[0,0,1],[0,0,2],...[255,255,255]) on x-axis for that i am using list:
from mpl_toolkits.mplot3d import Axes3D
x=[]
for i,j,k in ...
1
vote
1answer
37 views
making square axes plot with log2 scales in matplotlib
I'd like to make a square axis scatter plot with matplotlib. Normally using set_scale("log") works great, but it limits me to log10. I'd like to make the plot in log2. I saw the solution here: How to ...
1
vote
2answers
102 views
Make matplotlib autoscaling ignore some of the plots
I use matplotib's Axes API to plot some figures. One of the lines I plot represents the theoretical expected line. It has no meaning outside of the original y and x limits. What I want, is for ...
1
vote
1answer
220 views
Multiple data set plotting with matplotlib.pyplot.plot_date
this might be really a simple question for most of you guys using matplotlib. Please help me out. I want to plot two array like [1,2,3,4] and [4,5,6,7] versus time in a same plot. I am trying to use ...