Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could you please give a simple example of this or a link?

Thanks!

SetJmp

share|improve this question
3  
Do you mean you haven't try anything at all for yourself? – César Bustíos May 9 '12 at 16:07
2  
Have you tried google? – koniiiik May 9 '12 at 16:10
3  
Please do your own googling instead of asking us to do it for you. Google how to create matplotlib graphs. Google how to serve images in django views – jdi May 9 '12 at 16:11
1  
Sometimes even experienced users forget to google first ;) – SetJmp May 9 '12 at 17:39

closed as not a real question by Tim Post May 10 '12 at 8:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You could save the file to some place in your web server directory structure.

from matplotlib import pyplot as plt
plt.figure()
plt.scatter([0,1,2],[0,1,2])
plt.title("Example")
plt.savefig("/tmp/example.png")

enter image description here

share|improve this answer

As one or more of the comments indicated, a google search turns up the following tutorial code included in a cookbook associated with the scipy project:

http://www.scipy.org/Cookbook/Matplotlib/Django

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.