biggles icon indicating copy to clipboard operation
biggles copied to clipboard

simple, elegant python plotting

Results 19 biggles issues
Sort by recently updated
recently updated
newest added

At least on OSX, setup from the current master branch fails with: ```"ModuleNotFoundError: No module named 'geometry'"``` Presumably, this refers to the PyGeometry package: https://github.com/AndreaCensi/geometry `pip install PyGeometry` superficially works...

The setup instructions for OSX are now out of date. homebrew has been modified and the ```brew install plotutils``` does not any longer accept the ```--with-x11``` option. Possibly because of...

Hello I have built biggles for windows. https://sourceforge.net/projects/pcpu/files/Python3%20windows%20amd64/ py37,py38, py39 One problem, it can't creates a temp file png to show. Ghostscript needs to be installed. https://sourceforge.net/projects/pcpu/files/Python37%20ubuntu%2020.04%20amd64/ py37 on ubuntu...

~/opt/anaconda3/lib/python3.7/site-packages/biggles/libplot/renderer.py in __init__(self, ll, ur, type, parameters, file) 150 self.lowerleft = ll 151 self.upperright = ur --> 152 super(LibplotRenderer, self).__init__(type, parameters, filename) 153 #self.pl = raw.new( type, parameters, file )...

Unable to install using pip on windows 7/python 3.6. Pip terminates but biggles is not installed. Have you any ideas as this would be a great library addition for use...

biggles 1.7.2 installed via pip in python 3.7 on Max OS-X 10.11.6; plotutils etc dependencies are all satisfied. Standard Quartz installation for X11. The following test snippet fails in python...

The idea here is that points and their error bars really should be tied together currently in PlotKey the error bar does not show, which can be confusing I think....

An example is `label` which can't be set on construction. This does not produce a visible `PlotKey` because label is not set ```python key=PlotKey(0.1, 0.9, halign='left') plt=FramedPlot(key=key) plt.add(Points([3,4], [5,6], label='stuff'))...

plotutils does not seem to be actively maintained at the moment. Thus I think we should try and allow for plotting with a different backend. @esheldon suggested Cairo (http://cairographics.org/).