Tagged Questions
10
votes
5answers
405 views
Efficient method of calculating density of irregularly spaced points
I am attempting to generate map overlay images that would assist in identifying hot-spots, that is areas on the map that have high density of data points. None of the approaches that I've tried are ...
8
votes
1answer
216 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 = ...
7
votes
3answers
175 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 ...
6
votes
1answer
132 views
How to set the line width of error bar caps, in matplotlib?
How can the line width of the error bar caps in Matplotlib be changed?
I tried the following code:
(_, caplines, _) = matplotlib.pyplot.errorbar(
data['distance'], data['energy'], ...
6
votes
1answer
231 views
z-axis formatting in mplot3d
I am trying to make a surface plot in matplotlib, but I am unable to make the formatting of the z-axis look good. I want it to be on scientific notation, with the prefix along the axis and the ...
5
votes
1answer
276 views
Why is my xlabel cut off in my matplotlib plot?
I am plotting a dataset using matplotlib where I have an xlabel that is quite "tall" (it's a formula rendered in TeX that contains a fraction and is therefore has the height equivalent of a couple of ...
5
votes
2answers
1k views
Matplotlib/Pyplot: How to zoom subplots together AND x-scroll separately?
I previously asked the question "How to zoom subplots together?", and have been using the excellent answer since then.
I'm now plotting just two sets of time-series data, and I need to continue to ...
4
votes
1answer
128 views
matplotlib backends - do I care?
[~/repo/py]
|10>print matplotlib.rcsetup.all_backends
['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'MacOSX', 'QtAgg', 'Qt4Agg', 'TkAgg', 'WX', 'WXAgg', 'CocoaAgg', 'agg', 'cairo', 'emf', 'gdk', 'pdf', ...
4
votes
3answers
270 views
Plotting a line over several graphs
I don't know how this thing is called, or even how to describe it, so the title may be a little bit misleading.
The first attached graph was created with pyplot. I would like to draw a straight line ...
4
votes
1answer
443 views
How do I force matplotlib to write out the full form of the x-axis label, avoiding scientific notation?
I've created a simple hexbin plot with matplotlib.pyplot. I haven't changed any default settings. My x-axis information ranges from 2003 to 2009, while the y values range from 15 to 35. Rather than ...
4
votes
2answers
591 views
pyplot: really slow creating heatmaps
I have a loop that executes the body about 200 times. In each loop iteration, it does a sophisticated calculation, and then as debugging, I wish to produce a heatmap of a NxM matrix. But, generating ...
3
votes
1answer
42 views
How can I get the length of a single unit on an axis in matplotlib, in pixels?
I want to make markersize equal to a single unit in height. It seems that markersize is in pixels. How can I get at how large "1 unit" (along a given axis) is, in pixels?
3
votes
2answers
51 views
passing x- and y-data as keyword arguments in matplotlib?
Or, why doesn't
import numpy
import matplotlib.pyplot as plt
plt.plot(xdata = numpy.array([1]), ydata = numpy.array(1), color = 'red', marker = 'o')
work? c.f.
> In [21]: import numpy
> In ...
3
votes
2answers
97 views
Optimizing matplotlib pyplot: plotting for many small plots
I want to make a movie of some plotted points moving around for a rudimentary traffic simulation. Plotting takes forever, though--~10 frames takes 7s!! What's up with that?
Python code:
import ...
3
votes
3answers
110 views
How do I print a Celsius symbol with matplotlib?
I want to print an axis label: "Temperature (℃)". How do I do it?
A snippet is this:
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
x = range(10,60,1)
y = range(-100, 0, 2)
fig = ...
3
votes
3answers
101 views
How do get matplotlib pyplot to generate a chart for viewing / output to .png at a specific resolution?
I'm fed up with manually creating graphs in excel and consequently, I'm trying to automate the process using Python to massage the .csv data into a workable form and matplotlib to plot the result.
...
3
votes
1answer
893 views
Matplotlib 3D Scatter Plot with Colorbar
Borrowing from the example on the Matplotlib documentation page and slightly modifying the code,
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
def ...
3
votes
2answers
559 views
How to plot 3D function as 2D colormap in python?
Are there any python libraries that will let me plot z = f(x,y) where z is represented as the color in a densely rasterized image (as opposed to the color of a bunch of scatterplot points) ? If so, ...
3
votes
3answers
4k views
Set Colorbar Range in matplotlib
I have the following code:
import matplotlib.pyplot as plt
cdict = {
'red' : ( (0.0, 0.25, .25), (0.02, .59, .59), (1., 1., 1.)),
'green': ( (0.0, 0.0, 0.0), (0.02, .45, .45), (1., .97, ...
3
votes
1answer
608 views
displaying a colored 2d array in matplotlib in Python
I'd like to plot a 2-d matrix from numpy as a colored matrix in Matplotlib. I have the following 9-by-9 array:
my_array = diag(ones(9))
# plot the array
pcolor(my_array)
I'd like to set the first ...
3
votes
3answers
1k views
matplotlib.pyplot, preserve aspect ratio of the plot
Assuming we have a polygon coordinates as polygon = [(x1, y1), (x2, y2), ...], the following code displays the polygon:
import matplotlib.pyplot as plt
plt.fill(*zip(*polygon))
plt.show()
By ...
3
votes
2answers
447 views
How can I get pyplot images to show on a console app?
I'm trying to create an image using matplotlib.pyplot.imshow(). However, when I run the program from my console, it doesn't display anything?
This is the code:
import matplotlib.pyplot
myimage = ...
3
votes
3answers
6k views
Python plotting: How can I make matplotlib.pyplot stop forcing the style of my markers?
I am trying to plot a bunch of data points (many thousands) in Python using matplotlib so I need each marker to be very small and precise. How do I get the smallest most simple marker possible? I ...
2
votes
1answer
58 views
Using Colormaps to set color of line in matplotlib
How does one set the color of a line in matplotlib with scalar values provided at run time using a colormap (say jet)? I tried a couple of different approaches here and I think I'm stumped. values[] ...
2
votes
1answer
107 views
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
1answer
98 views
Pyplot/Matplotlib: How to access figures opened by another interpreter?
I am using matplotlib.pyplot (with Eclipse on Windows). Every time I run my code it opens several pyplot figure windows.
The problem is that if I don't close those windows manually they accumulate. ...
2
votes
1answer
196 views
how to stop the matplotlib GUI thread from freezing up?
from matplotlib import pyplot as p
from scipy import zeros
from Queue import Queue
import random
w,h = 320,200
black = zeros((h,w,3), dtype='uint8')
red = black.copy(); red[:,:,0] = 255
green = ...
2
votes
2answers
97 views
How to get rid of mouse hover coordinates using PyPlot?
Hej, I'm fairly new to programming. I need to include some PyPlot Figures onto a Tkinter GUI (using Python 2.6). So far so good, made that work, the only annoying thing is that a mouse over effect is ...
2
votes
1answer
108 views
How do I get handle to axes in pyplot twinned axes?
I need some clarification of add_subplot: in example below, i have 2 subplots, twinned on the y axis. I want to manipulate each axis, but don't get it!
import matplotlib.pyplot as plt
fig = ...
2
votes
1answer
172 views
How to animate a time-ordered sequence of matplotlib plots
I want to plot a sequence of .png images in matplotlib. The goal is to plot them rapidly to simulate the effect of a movie, but I have additional reasons for wanting to avoid actually creating an .avi ...
2
votes
2answers
174 views
kilo (K) and mega (M) suffixes on matplotlib's axes
I would like to print values on axes not as 30000 or 7000000 but as 30K or 7M. It means to add K (kilo) suffix for x < 10^6 and M (mega) suffix for x >= 10^6. How can I do that?
Current code ...
2
votes
2answers
572 views
Exact semantics of Matplotlib's “interactive mode” (ion(), ioff())?
The documentation for the "interactive mode" in Matplotlib's pyplot reads:
The interactive property of the pyplot interface controls whether a figure canvas is drawn on every pyplot command. If ...
2
votes
1answer
200 views
Choosing which figures to show on-screen and which to save to a file using Python's matplotlib
I'd like to create different figures in Python using matplotlib.pyplot. I'd then like to save some of them to a file, while others should be shown on-screen using the show() command.
However, show() ...
2
votes
2answers
325 views
In matplotlib.pyplot, how to plot two datasets using interleaved bar graphs?
I am going through Think Stats and I would like to compare multiple data sets visually. I can see from the book examples that it is possible to generate an interleaved bar graph with a different color ...
2
votes
1answer
149 views
graphing milliseconds in python matplotlib.dates
I have time tagged data formatted using datetime.datetime.strptime that includes milliseconds. The data can span from a few minutes to a few hours. When I plot using pyplot and zoom in, it seems the ...
2
votes
2answers
4k views
set axis limits in matplotlib pyplot
I have two subplots in a figure. I want to set the axes of the second subplot such that it has the same limits as the first subplot (which changes depending on the values plotted). Can someone please ...
2
votes
2answers
401 views
How to change the amount of increments in pyplot axis
Hi probably quite a simple question but..
When plotting a graph using matplotlib.pyplot my Y axis goes from -0.04 to 0.03 which is fine but there are 8 labels for increments (eg 0.03,0.02,0.01 etc.). ...
2
votes
1answer
411 views
pyplot.ginput() causes axes to change?
I am encountering some strange behavior with using the matplotlib.pyplot ginput() function to store clicked points. On the first click, the ranges of the axes of the clicked image change to add 200 on ...
2
votes
1answer
1k views
how to make an axes occupy multiple subplots in python pyplot
I would like to have three plots in single figure. The figure should have a subplot layout of two by two, where the first plot should occupy the first two subplot cells (i.e. the whole first row of ...
2
votes
1answer
628 views
draw a border around subplots in matplotlib
anyone know how to draw a border around an individual subplot within a figure in matplotlib? I'm using pyplot.
eg:
import matplotlib.pyplot as plt
f = plt.figure()
ax1 = f.add_subplot(211)
ax2 = ...
2
votes
1answer
1k views
Quitting matplotlib.pyplot animation gracefully
I have a script that plots data of some photometry apertures, and I want to plot them in an xy plot. I am using matplotlib.pyplot with python 2.5.
The input data is stored in around 500 files and ...
1
vote
0answers
23 views
Matplotlib doesn't display graph in virtualenv
I have pip installed matplotlib in my virtualenv and I am trying to plot a simple graph. I use Eclipse and PyDev. When I run the script from Eclipse it doesn't display any graph at all. I have tried ...
1
vote
1answer
32 views
How to hatch PolyCollection instance?
Is it possible to hatch PolyCollection instance?
I want to hath a PolyCollection returned from fill_betweenx.
import matplotlib.mlab as mlab
from matplotlib.pyplot import figure, show
import numpy as ...
1
vote
1answer
77 views
Error setting tick positions with matplotlib in python
I'm trying to set tick mark positions in matplotlib. I get errors when running the following minimal example:
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import ...
1
vote
1answer
70 views
Hide contour linestroke on pyplot.contourf to get only fills
I have a pet project to create images of maps, where I draw the roads and other stuff over a contour plot of the terrain elevation. It is intended to plan mountain bike routes (I have made some ...
1
vote
1answer
117 views
Pyplot - Label Plots
I am having a nightmare of a time trying to label data with pyplot.
I am currently plotting all of my data like this: plt.plot(data).
data is an array that has a column of total costs, and then ...
1
vote
2answers
72 views
Erase previously drawn content from a pyplot drawing
Using pyplot, I've created a figure and plotted a number of randomly scattered (x,y) points. I then want to connect some subset of these points with line segments. After the user presses a key, my ...
1
vote
1answer
228 views
Pyplot, main title, subplot
Simple question: I am using pyplot, I have 4 subplots. How to set a single, main title above all the subplots? title() sets it above the last subplot.
1
vote
1answer
169 views
Data plotting in boxes with python
I have an array
d[0:100]
which is defined in boxes (or cells) whose center are stored in these two arrays
x[0:100]
y[0:100]
and whose size is
h[0:100]
I wish I could plot an image ...