问题标签 [gota]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
go - Go gota Dataframe 不加载结构,需要 []struct
我正在读取一个文件,每行包含两个由空格分隔的单词。我扫描并将每一行拆分为两个单词(字符串)并将它们存储在MyEntity
结构中(in items
)。然后将单词添加到items
.
不应该items
是[]struct
这里吗?我正在使用gota
包(https://github.com/go-gota/gota)从创建 DataFrameitems
但使用dataframe.LoadStructs(items)
失败,因为它items
是 astruct
并且它必须是 a []struct
。
我对 Go 还很陌生,所以我在这里缺少什么?
dataframe - 使用 gota ReadCSV 时跳过行
我来自 pandas,它有一个方便的skiprows
参数,如下所示:
我怎么能用 gota 做到这一点?