Ich bin gerade dabei herauszufinden, wie Python und Gnuplot zusammenarbeiten. Aufgnuplot Syntaxfehler bei der Verwendung von Python
http://wiki.aims.ac.za/mediawiki/index.php/Python:Gnuplot_module
fand ich eine Einführung und ich wollte es auf meinem Ubuntu-Rechner auszuführen.
import Gnuplot
gp = Gnuplot.Gnuplot(persist = 1)
gp('set data style lines')
# The first data set (a quadratic)
data1 = [[0, 0], [1, 1], [2, 4], [3, 9], [4, 16]]
# The second data set (a straight line)
data2 = [[0, 0], [1, 1], [2, 2], [3, 3], [4, 4]]
plot1 = Gnuplot.PlotItems.Data(data1, with_="lines", title="Quadratic")
plot2 = Gnuplot.PlotItems.Data(data2, with_="points 3", title=None) # No title
gp.plot(plot1, plot2)
Allerdings bekomme ich folgende Fehlermeldung:
./demo.py
./demo.py: line 2: syntax error near unexpected token `('
./demo.py: line 2: `gp = Gnuplot.Gnuplot(persist = 1)'
eine Ahnung, was hier falsch sein könnte? Um Gnuplot-Unterstützung für Python zu installieren, habe ich python-gnuplot installiert. Vermisse ich ein anderes Paket?
Ist diese "Gnuplot-Unterstützung für Python" die gleiche wie Gnuplot.py? Versuchen Sie es zu installieren, und führen Sie seine Demo aus (so wie es aussieht, versuchen Sie oben): http://gnuplot-py.sourceforge.net/ –