dataframe-go icon indicating copy to clipboard operation
dataframe-go copied to clipboard

DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration

Results 22 dataframe-go issues
Sort by recently updated
recently updated
newest added

Hello. Is there simple way to join two dataframes of same dimension? Something like df = append(df, another_df) or similar. | | Name1 | Name2 | |-|-|-| | 0 |...

Licenses are code; tricky to the point of being analogous to cryptographic algorithms. Writing a custom one often creates unintended consequences. For instance, as currently worded, even with the best...

question

It's written in the README file that _"Once Go 1.18 (Generics) is introduced, the ENTIRE package will be rewritten."_, As Go 1.18 has been released for a while, I'm wondering...

hi there, Hope someone can help me, how can I achieve multi index similar to https://pandas.pydata.org/pandas-docs/stable/user_guide/advanced.html Any help is much appraciated. Regards, Julio

To get more feature parity with Pandas, integrate with https://github.com/nfx/go-htmltable.

Hi this looked really promising but it looks like it's not maintained or used any more. What do people use instead for pandas-style dataframes in golang?

I noticed this while benchmarking with funcs.Evaluate. Here's my before and after for a 45x45 dataframe of float64s with an expression that uses all 45 columns. ``` BenchmarkFuncEvaluateOriginal-10 9235 625042...

holt-winters train.go runs off end of series and panics if Range.Start The indexing limits used in the for loop are intended for hw.sf.Values, but since we are indexing into "y"...

This library's implementation of the Holt-Winters forecasting algorithm is the best one I could find online for golang, because it supports confidence intervals. However, it has two critical bugs for...