Comments on: Tools I use: matplotlib http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/?utm_source=rss&utm_medium=rss&utm_campaign=tools-i-use-matplotlib Sat, 11 May 2013 19:51:19 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: Diwaker Gupta http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-199294 Diwaker Gupta Tue, 20 Apr 2010 05:32:04 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-199294 @NBoli: Glad you found it useful!

]]>
By: NBoli http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-199176 NBoli Sun, 18 Apr 2010 16:08:41 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-199176 Hey thanks for this post, wasn’t aware of this library. This will help me out big time. Thanks again.

]]>
By: Tools for the savvy grad student http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-193409 Tools for the savvy grad student Sat, 09 Jan 2010 04:21:01 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-193409 [...] me to separate my data collection/analysis from the actual plotting of the data. I personally am a huge fan of matplotlib — it is an uber-plotting library written in Python. It can produce high-quality graphics in [...]

]]>
By: Making Dynamic Charts and Graphs for Your WebPage--Answer My Searches http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-2280 Making Dynamic Charts and Graphs for Your WebPage--Answer My Searches Fri, 01 Dec 2006 17:42:02 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-2280 [...] Making Dynamic Charts and Graphs for Your WebPage Today I describe how I will make data-driven charts and graphs for an intranet site I’m developing. After an hour of researching the Python graphing libraries out there, I decided to go with Matplotlib for the chart generation. It seemed like the most server friendly option because it seems to run fast and it required me to install the least amount of other programs. (Plus this guy really likes it.) [...]

]]>
By: diwaker http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1253 diwaker Wed, 12 Jul 2006 17:12:34 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1253 *@greg*: Thanks for the tutorial! Yeah, weird about the trackbacks not appearning. I’ll check up on my site config to see if anything’s broken. I’ve recently upgraded some stuff so it might very well be the case.

]]>
By: Greg http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1248 Greg Wed, 12 Jul 2006 14:57:48 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1248 I put together a quick tutorial on it yesterday which may be of use to you guys:
Making Dynamic Charts and Graphs for Your WebPage with Matplotlib

(I linked to this page and did a trackback, it’s strange it didn’t show up here)

-Greg

]]>
By: Bernardo Torres http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1195 Bernardo Torres Tue, 27 Jun 2006 23:31:15 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1195 Yeah!
Except that:
import matplotlib
matplotlib.use(WhateverOutput)

needs to be done first, at least in Debian Sid, since it uses GTK by default :\

]]>
By: iztok http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1194 iztok Tue, 27 Jun 2006 21:55:40 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1194 from pylab import *
matplotlib.use(‘PS’)

plot(…)

savefig(“myfile.eps”)

this does not need any display but only generates an .eps file.

]]>
By: diwaker http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1117 diwaker Thu, 15 Jun 2006 21:22:35 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1117 *@bernardo*: It depends on which backend you are using. If you use the Agg backend, you can run everything from console. Infact, even with the GtkAgg backend, my scripts run perfectly fine from console. So I’m pretty sure its just a configuration issue — try changing your backend.

]]>
By: Bernardo Torres http://floatingsun.net/2006/02/07/tools-i-use-matplotlib/#comment-1116 Bernardo Torres Thu, 15 Jun 2006 20:23:45 +0000 http://floatingsun.net/blog/2006/02/07/530/#comment-1116 The bad thing about pylab is that it DEMANDS you get your display open, otherwise, it doesn’t run. Does anybody has the solution for putting pylab output in a file? Mail-me. Thanks!

]]>