在 gota 中设置列名
我有一个没有定义列名的数据集。我如何使用 gota 以编程方式分配这些?作为比较,Pandas 有 df。重命名
。
假设我的数据如下所示:
1,2,3
4,5,6
7,8,9
我基本上希望在我的数据框中包含以下内容:
A,B,C
1,2,3
4,5,6
7,8,9
I have a dataset without column names defined. How can I assign these programmatically using gota? For comparison, Pandas has df.rename
.
Say my data looks like this:
1,2,3
4,5,6
7,8,9
I basically want this in my dataframe:
A,B,C
1,2,3
4,5,6
7,8,9
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用加载选项调用
ReadCSV
。在go中,这个方法称为功能选项。这是gota中的例子:
gota中的函数
Load*
和Read*
都有LoadOption
:https://pkg.go.dev/github.com/go-一定/一定/数据框
You can call
ReadCSV
with load options. In go, this method is called functional options.This is the example in gota:
Functions
Load*
andRead*
in gota all haveLoadOption
:https://pkg.go.dev/github.com/go-gota/gota/dataframe