[sage-devel] Re: Error Bar plot

2010-06-10 Thread mhampton
Here's a simple example, it might be tweakable to get want you want: def stdplot(somedata): means = [N(mean(row)) for row in somedata] stds = [N(std(row)) for row in somedata] outplot = Graphics() for i in range(len(means)): outplot += point([i,means[i]]) outplot +=

[sage-devel] Re: Error Bar plot

2010-06-10 Thread kcrisman
On Jun 10, 5:40 am, Marco Boretto wrote: >  Hello to everybody, i'm try to use sage in my physics elaboration, > but i could not make plot point with an error bar for each point.. > there is the possibility to develop this function? > Marco Dear Marco, Thanks for trying Sage! This possibility