dataframe-go
dataframe-go copied to clipboard
DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
I suspect that the library maintainers prepended "legacy-" to versions before changing the versioning scheme. At the least, this dependency should be updated to `legacy-v1.1.1`.
``` go: github.com/sjwhitworth/[email protected] requires github.com/rocketlaunchr/[email protected] requires github.com/blend/[email protected]: reading github.com/blend/go-sdk/go.mod at revision v1.1.1: unknown revision v1.1.1 ``` It looks like `v1.1.1` of `github.com/blend/go-sdk` is missing. Are you seeing the same or...
## 1. Create a file with python pandas ```python dataframe = pandas.DataFrame({ "A": ["a", "b", "c", "d"], "B": [2, 3, 4, 1], "C": [10, 20, None, None] }) dataframe.to_parquet("1.parquet") ```...
* I want to use two columns to be a unique index. How can I implement it?
…/62 (Chinese characters and python BOM prefix)
the error is exception recovered: reflect.StructOf: field 0 has invalid name at `ompluscator/[email protected]/builder.go:192` [export.csv](https://github.com/rocketlaunchr/dataframe-go/files/8399584/export.csv)
1. ~~Update copyright + remove coverall~~ 2. ~~Add Row function to dataframe (also allow it to decide what of data is returned) + DeepLock opt~~ 3. ~~In utils, Search function...
How to remove duplicate rows in DataFrame? python's pd.drop_duplicates()
Hi, This is a very helpful package, I was wondering do we have plans implementing `Timeindex` for series / dataframe and implement resample just like pandas? Could be extremely useful....