I want to create simple charts like pies and bars in python.
I tried out CairoPlot and pycha. Both look amazing, but they seem not to be able to handle unicode characters properly.
CairoPlot.pie_plot(name='test.png', width=800, height=600,
data={'eins':100, 'zwei':48, 'drei':90, 'vier':98,u'fünf':187})
result in f...
I want to process the data in the file "output.log" and feed it to graphdata['eth0]
I have done this but it process only the first line:
logread = open("output.log", "r").readlines()
for line in logread:
print "line", line
i = line.rstrip("\n")
b = float(i)
colors = [ (0.2, 03, .65), (0.5, 0.7, .1), (.35...
hi,
i am using cairoplot, to make graphs, however the file from where i am reading the data is growing huge and its taking a long time to process the graph
is there any real-time way to produce cairo graph, or at least store the previous readings..like rrd.
-krisdigitx
...
I'm using cairo plot to draw charts with python. I followed the instruction as stated on the website to install Cairplot, http://linil.wordpress.com/2008/09/16/cairoplot-11/ :
sudo apt-get install bzr
bzr branch lp:cairoplot/1.1
The installation completes successfully.
I then try to import the modules in python:
>>> import CairoPl...