Tagged Questions
The cairoplot tag has no wiki summary.
1
vote
1answer
133 views
python: cairoplot gantt_chart rendering problems
looks like gantt_chart() doesn't work properly for following set of data:
tg_p = [ (0, 12), (0, 5), (0,13) ]
tg_v = [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14']
...
1
vote
1answer
196 views
Charts with proper unicode support
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.
...
0
votes
0answers
32 views
problem downloading cairoplot for graphs is python
i tried downloading cairoplot from several computers and browers from this link:
http://cairoplot.sourceforge.net/download.html
and it's just ain't working.
does someone knows how can i get it ...
0
votes
2answers
295 views
Python: Import module CairoPlot fails
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 ...
0
votes
3answers
170 views
python: open file, feed line to list, process list data
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 ...