Tagged Questions
8
votes
1answer
235 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
211 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
151 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
243 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
153 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', ...
5
votes
1answer
333 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 ...
5
votes
2answers
1k views
Matplotlib how to show logarithmically spaced grid lines at all ticks on a log-log plot?
I'm trying to plot a log-log graph that shows logarithmically spaced grid lines at all of the ticks that you see along the bottom and left hand side of the plot. I've been able to show some gridlines ...
4
votes
3answers
298 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
472 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
614 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
2answers
50 views
plot a circle with pyplot
surprisingly I didn't find a straight-forward description on how to draw a circle with matplotlib.pyplot (please no pylab) taking as input center (x,y) and radius r. I tried some variants of this:
...
3
votes
1answer
46 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
66 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
120 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
137 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
134 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
2answers
464 views
small scatter plot markers in matplotlib are always black
I'm trying to use matplotlib to make a scatter plot with very small gray points. Because of the point density, the points need to be small. The problem is that the scatter() function's markers seem ...
3
votes
2answers
650 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 ...
3
votes
1answer
993 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
585 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
1answer
900 views
Matplotlib/Pyplot: How to zoom subplots together?
I have plots of 3-axis accelerometer time-series data (t,x,y,z) in separate subplots I'd like to zoom together. That is, when I use the "Zoom to Rectangle" tool on one plot, when I release the mouse ...
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
635 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
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
17 views
x-axis differ in pcolor and plot_date subplots
I want to thank you all for this huge amount of answers I found here since I began working with python and matplotlib.
I have a quite specific quesiton, now. I'd like to create a plot of colour-coded ...
2
votes
1answer
79 views
Pyplot annotate with image (png or numpy array) instead of text
Is it possible to annotate a pyplot figure, but not with text or circles or the other similar objects, but an image instead?
For example read a png from a file and present it below a plotted data in ...
2
votes
1answer
86 views
Matplotlib 3D plot - 2D format for input data?
I am plotting a function of two parameters with matplotlib. I copied an example in matplotlib tutorial and transformed with my own input data: vectors X and Y (equally spaces numbers in -3:3) and ...
2
votes
1answer
107 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
112 views
2
votes
1answer
77 views
matplotlib — interactively select points or locations?
In R, there is a function locator which is like Matlab's ginput where you can click on the figure with a mouse and select any x,y coordinate. In addition, there is a function called identify(x,y) ...
2
votes
1answer
104 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
596 views
pyplot axes labels for subplots
right now, i have the following plot:
import matplotlib.pyplot as plt
fig2 = plt.figure()
ax3 = fig2.add_subplot(2,1,1)
ax4 = fig2.add_subplot(2,1,2)
ax4.loglog(x1, y1)
ax3.loglog(x2, y2)
...
2
votes
1answer
227 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
106 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
123 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
205 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
211 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
590 views
Modifying axes on matplotlib colorbar plot of 2D array
I have a 2D numpy array that I want to plot in a colorbar. I am having trouble changing the axis so that they display my dataset. The vertical axis goes 'down' from 0 to 100, whereas I want it to go ...
2
votes
1answer
201 views
Set autoscale limits on plot to have buffer around all points
I would like to plot a set of points using pyplot in matplotlib but have none of the points be on the edge of my axes. The autoscale (or something) sets the xlim and ylim such that often the first ...
2
votes
1answer
230 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
1answer
157 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
441 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
432 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
648 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
1answer
34 views
Matplotlib: Assign Colors to Lines
I am trying to plot a variable number of lines in matplotlib where the X, Y data and colors are stored in numpy arrays, as shown below. Is there a way to pass an array of colors into the plot ...
1
vote
1answer
26 views
How to select ticks at n-positions in a log plot?
In matplotlib, sometime the major-ticks are too close to each other in a loglog plot. Instead of setting them manually, can one use something similar to MaxNLocator to put ticks at n-locations in a ...