[go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread ajstarks
SVGo is library for SVG generation, but others (some cited in this thread), have used it as a basis for building graphics and visualizations. See: [1] for examples (including how to interface to data, there's even a barchart [2] example :) [1]

Re: [go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Sebastien Binet
On Fri, Sep 29, 2017 at 10:33 AM, Vikram Rawat wrote: > thanks a lot for your reply sebestian. > > > You certainly are a good man and I have high hopes for your library too... > > But before coming to Mailing list I check almost all of them and I didn't > find anyone

[go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Vikram Rawat
> > thanks a lot for your reply sebestian. You certainly are a good man and I have high hopes for your library too... But before coming to Mailing list I check almost all of them and I didn't find anyone useful. The https://github.com/aclements/go-gg package is not useful at all. Because

Re: [go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Sebastien Binet
Vikram, On Sep 29, 2017 8:49 AM, "Vikram Rawat" wrote: Thanks for your reply. Library seems promising. but when I run it , this errors out cannot find package "bitbucket.org/zombiezen/gopdf/pdf" in any of: C:\Go\src\bitbucket.org\zombiezen\gopdf\pdf (from $GOROOT)

Re: [go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Dan Kortschak
To getĀ bitbucket.org/zombiezen/gopdf/... to install, you will need to install mercurial. On Thu, 2017-09-28 at 23:49 -0700, Vikram Rawat wrote: > Thanks for your reply. Library seems promising. but when I run it , > thisĀ  > errors out > > > > cannot find package

[go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Vikram Rawat
Thanks for your reply. Library seems promising. but when I run it , this errors out cannot find package "bitbucket.org/zombiezen/gopdf/pdf" in any of: C:\Go\src\bitbucket.org\zombiezen\gopdf\pdf (from $GOROOT) C:\Projects\Go\src\bitbucket.org\zombiezen\gopdf\pdf (from $GOPATH) when I try go

[go-nuts] Re: Graphing libraries in golang

2017-09-28 Thread Egon
On Friday, 29 September 2017 08:42:50 UTC+3, Vikram Rawat wrote: > > By graphing I actually meant *data visualization libraries* > > SVGO would be so hard to pass a data to and design even the basic and > simple *BARCHART* > > other ones don't have enough documentation to understand how it

[go-nuts] Re: Graphing libraries in golang

2017-09-28 Thread Vikram Rawat
> > By graphing I actually meant *data visualization libraries* SVGO would be so hard to pass a data to and design even the basic and simple *BARCHART* other ones don't have enough documentation to understand how it works. and The reason I am trying GO is that R is slow. There is no point in

Re: [go-nuts] Re: Graphing libraries in golang

2017-09-28 Thread Rich
Not sure if this applies but I did some graphing using this: https://godoc.org/github.com/ajstarks/svgo On Wednesday, September 27, 2017 at 8:35:49 PM UTC-4, kortschak wrote: > > On Wed, 2017-09-27 at 08:54 -0700, Volker Dobler wrote: > > One from

Re: [go-nuts] Re: Graphing libraries in golang

2017-09-27 Thread Dan Kortschak
On Wed, 2017-09-27 at 08:54 -0700, Volker Dobler wrote: > One from https://awesome-go.com/#science-and-data-analysis > probably should fit your needs. Or try looking for R bindings and > run your plots through R. https://godoc.org/gonum.org/v1/plot for the first and

[go-nuts] Re: Graphing libraries in golang

2017-09-27 Thread Volker Dobler
One from https://awesome-go.com/#science-and-data-analysis probably should fit your needs. Or try looking for R bindings and run your plots through R. V. On Wednesday, 27 September 2017 17:05:36 UTC+2, Vikram Rawat wrote: > > I come from an R background and I am not able to find one single