Tagged Questions
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
177 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
133 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
232 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
132 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
279 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
3answers
273 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
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
1answer
445 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
98 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
115 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
102 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
358 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
1answer
900 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
562 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
838 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
610 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
64 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
65 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
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
497 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
203 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
109 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
173 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
175 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
576 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
184 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
201 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
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
405 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
630 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
43 views
Matplotlib - labelling points (x,y) on a line with a value z
I'm trying to make a 2d plot using pyplot. I'm reading in a file with several columns, each of which contains around 100 values between 1 and 10. I'm plotting column 5 against column 6, which is fine. ...
1
vote
0answers
27 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
21 views
What is antialiaseds in matplotlib.collections and how to set the parameter for it?
What is antialiaseds in matplotlib.collections and how to set the parameter for it?
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
78 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
2answers
35 views
set alpha channel for pyplot objects?
In R, you can set the alpha channel by
rgb(r=.1,g=.5,b=.5,alpha=.5,max=1)
for any object that takes a color argument. patch objects in pyplot have a set_alpha method, but can this be done for ...
1
vote
1answer
72 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 ...