1 Star 0 Fork 13

谋决量化/go_pandas

forked from 王布衣/pandas 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dataframe_test.go 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-02-14 08:08 . !59 #I6F1P2 优化序列处理方式
package pandas
import (
"fmt"
"testing"
)
func TestLoadStructs(t *testing.T) {
type testStruct struct {
A string
B int
C bool
D float64
}
type testStructTags struct {
A string `dataframe:"a,string"`
B int `dataframe:"b,string"`
C bool `dataframe:"c,string"`
D float64 `dataframe:"d,string"`
E int `dataframe:"-"` // ignored
f int // ignored
}
data := []testStruct{
{"a", 1, true, 0.0},
{"b", 2, false, 0.5},
}
dataTags := []testStructTags{
{"a", 1, true, 0.0, 0, 0},
{"NA", 2, false, 0.5, 1, 3},
{"NA", 3, false, 1.5, 2, 4},
}
df1 := LoadStructs(data)
fmt.Println(df1)
df2 := LoadStructs(dataTags)
fmt.Println(df2)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/moujue/go_pandas.git
git@gitee.com:moujue/go_pandas.git
moujue
go_pandas
go_pandas
master

搜索帮助