1
vote
3answers
44 views
Arched Relationship Infographic In Python
This is a very specific inforgraphic challange altough the fundemental question is how do you build archs between words using matplotlib, cario or an other python libary.
Given a …
0
votes
1answer
27 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 arou …
0
votes
1answer
29 views
Multiple grids on matplotlib
Hi, I'm making plots in python and matplotlib, which I found huge and flexible, till now.
The only thing I couldn't find how to do, is to make my plot have multiple grids.
I've loo …
2
votes
1answer
29 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 ou …
0
votes
2answers
88 views
Pytom matplotlib 3d bar function
Hello!
How to add strings to the axes in Axes3D instead of numbers?
I just started using the matplotlib. I have used Axes3dD to plot similar to the example given on their website …
1
vote
3answers
59 views
matplotlib multiple figure arrangement
Can we control where matplotlib places figures on the screen? I want to generate four figures (in four separate windows) that do not overlap.
Thanks.
2
votes
3answers
81 views
How to plot an image with non-linear y-axis with Matplotlib using imshow?
How can I plot an 2D array as an image with Matplotlib having the y scale relative to the power of two of the y value?
For instance the first row of my array will have a height in …
2
votes
5answers
447 views
Compile Matplotlib for Python on Snow Leopard
I've killed half a day trying to compile matplotlib for python on Snow Leopard. I've used the googles and found this helpful page (http://blog.hyperjeff.net/?p=160) but I still ca …
3
votes
3answers
141 views
Creating an Infographic In Python
I want to create a simple infographic in python. Matplotlib seems to have a lot of features but nothing that covers off my simple heatmap grid example.
The infographic is a simple …
2
votes
2answers
107 views
matplotlib for R user?
Hi, I regularly make figures (the exploratory data analysis type) in R. I also program in Python and was wondering if there are features or concepts in matplotlib that would be wor …
0
votes
1answer
61 views
matplotlib crashes after second plot [closed]
Possible Duplicate:
Python Matplotlib hangs when asked to plot a second chart (after closing first chart window)
Hi,
I just started working with matplotlib (using version …
1
vote
1answer
43 views
matplotlib border width
I use matplotlib 0.99
so, I can`t change width of border of subplot..
how can I do it?
code like it:
fig = plt.figure(figsize = (4.1, 2.2))
ax = fig.add_subplot(111)
and the …
0
votes
1answer
43 views
Sharing contour plot attributes between subplots
I'm plotting several contour plots side by side for visualizing the time evolution of certain function. I want each contour's value and color to be shared between all subplots, but …
1
vote
2answers
46 views
place labels between ticks
in matplotlib, how do i place ticks labels between ticks (not below ticks)
for example: when plotting a the stock price over time i would like the x axis minor ticks to display mo …
1
vote
2answers
47 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 …
