go-chart
gonum
go-chart | gonum | |
---|---|---|
3 | 24 | |
3,975 | 7,552 | |
- | 0.8% | |
4.2 | 8.0 | |
about 2 months ago | about 1 month ago | |
Go | Go | |
MIT License | BSD 3-clause "New" or "Revised" License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
go-chart
- What is the closest thing from Seaborn (python) in Go?
-
Create interactive figures with go-plotly!
I have used both https://github.com/wcharczuk/go-chart and https://github.com/gonum/gonum/tree/master/graph for charts, but my need for charts and graphs isn't constant. Since these are far more popular projects, there might be some hesitance for people to use something else without a specific differentiator. What is the biggest difference in your mind? I use a fair bit of Python, but not for graphs and charts. Is yours more similar to plotly? I know Gonum gets a lot of inspiration from Python libraries, but perhaps yours is a more specific equivalent to Plotly? I don't know exactly what you mean about interactivity until I get to play with it. I'm wrapping up a master's project now and might have a few weeks to poke at some visualizations.
-
How should I approach plotting (2d and 3d) in Golang project?
So far I've been using gonum anyway the couple times I've needed a chart, so I've used gonum, and while I did get confused in a few cases, I never tried the alternative I've heard mentioned: https://github.com/wcharczuk/go-chart Not sure how it compares, but if I ever have some time, I would love to contribute to gonum especially.
gonum
-
How to set up interface to accept multi-dimension array?
But if you want to see what can be done for numeric stuff, check out gonum. Personally, I still wouldn't use Go, and I rather suspect it's still pretty easy to reach for something like what you're trying to do and not find it because Go just can't write that type sensibly, but you can at least see what is available, written by people who disagree with me about Go not being a great language for this.
-
packages similar to Pandas
Numpy functionality is largely covered by https://www.gonum.org/ but for pandas I'm not sure if there is an equivalent as widely accepted. However, you might try https://github.com/rocketlaunchr/dataframe-go which I have not tried but it looks like it covers some of what you're looking for
-
What libraries are missing?
Math libraries. It's just gonum right now. Missing things that often require people to link C or Python libs. E.g. https://github.com/gonum/gonum/issues/354
- Gonum Numerical Packages
-
SIMD Accelerated vector math
Maybe this way you could avoid having Mul, Mul_Inplace, Mul_Into variants. Gonum mostly follows the same pattern.
- Modern hardware is fast, so let's choose the slowest language to balance it out
-
graph: A generic Go library for creating graph data structures and performing operations on them. It supports different kinds of graphs such as directed graphs, acyclic graphs, or trees.
How does this compare to gonum graph? https://github.com/gonum/gonum/tree/master/graph
-
From Python to NumPy
Go is quite a bit cleaner than Python and its concurrency/parallelism primitives can be well suited to scientific workloads.
You may want to have a look at Gonum (https://www.gonum.org), and the Go HEP package developed by CERN (https://go-hep.org).
I was also surprised to see DSP and pretty sophisticated packages, although I never used them: https://awesome-go.com/science-and-data-analysis
And of course Go has Jupyter integration, it's almost like running a script thanks to its fast compilation time.
-
Go for science?
You should check out this https://github.com/gonum/gonum
-
What makes concurrency in Go better than multiprocesing/multithreading in Python?
No, using CPU extensions and GPUs is a different thing than doing multitasking. There is Gonum but it is still slower than Numpy: https://github.com/gonum/gonum/issues/511
What are some alternatives?
asciigraph - Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies.
dataframe-go - DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
g3n - Go 3D Game Engine (http://g3n.rocks)
gosl - Linear algebra, eigenvalues, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, differential equations.
go-plotly - The goal of the go-plotly package is to provide a pleasant Go interface for creating figure specifications which are displayed by the plotly.js JavaScript graphing library.
Stats - A well tested and comprehensive Golang statistics library package with no dependencies.
canvas - Canvas is a Go drawing library based on OpenGL or using software rendering that is very similar to the HTML5 canvas API
gonum/plot - A repository for plotting and visualizing data
diagram - CLI app to convert ASCII arts into hand drawn diagrams.
PiHex - PiHex Library, written in Go, generates a hexadecimal number sequence in the number Pi in the range from 0 to 10,000,000.
goraph - Package goraph implements graph data structure and algorithms.