Tagged Questions

0
votes
1answer
46 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
2answers
55 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 = …
1
vote
2answers
53 views

Trying to position subplots next to each other

I am trying to position two subplots next to each other (as opposed to under each other). I am expecting to see [sp1] [sp2] Instead, only the second plot [sp2] is getting displayed. from matplotlib …
2
votes
3answers
1k 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 …