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

What are good python libraries which IronPython supports (current version wise) for drawing scientific plots on Win ? By "scientific plots" I mean simple x-y plots, x-y-z surface plots and x-y-z shaded plots.

share|improve this question

2 Answers

According to this it's possible to use matplotlib with IronPython. Which will at least get you 2D plots. Another way of running matplotlib.

gnuplot can generate 3D charts - http://www.resolverhacks.net/gnuplot_plotting.html might be a starting point.

share|improve this answer

If you get Resolver, then this Resolver Spreadsheet Challenge winner shows that it is quite capable of doing 3d shaded scientific plots.

http://www.voidspace.org.uk/python/weblog/arch_d7_2009_01_17.shtml#e1049

Resolver One is a sophisticated spreadsheet built entirely in IronPython which is becoming popular with scientists and people in the financial services industry due to the power of the IronPython scripting engine within it. You can dowload a trial version of it here:

http://www.resolversystems.com/

Nevertheless, if you work with colleagues who do most of their work on unix-like systems, you might want to choose matplotlib anyhow because there is more possibility of sharing code etc. Resolver One does not yet run on Mono.

share|improve this answer
The linked example uses gnuplot to draw graphs. – Jonathan Hartley Mar 28 '11 at 17:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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