1 Star 0 Fork 13

MasterGuo/pandas

forked from 王布衣/pandas 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dataframe_test.go 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2024-02-18 15:25 . dataframe适配series
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)
}
func TestDataFrame_Concat(t *testing.T) {
d1 := []float64{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}
s1 := NewSeriesWithoutType("x", d1)
df1 := NewDataFrame(s1)
fmt.Println(df1)
}
func TestDataFrame_Concat1(t *testing.T) {
d1 := []float64{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}
s1 := NewSeriesWithoutType("x", d1)
df1 := NewDataFrame(s1)
d2 := []float64{101, 102}
s2 := NewSeriesWithoutType("x", d2)
df2 := NewDataFrame(s2)
fmt.Println(df1)
fmt.Println(df2)
df3 := df1.Concat(df2)
fmt.Println(df1)
fmt.Println(df3)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/guowujun/pandas.git
git@gitee.com:guowujun/pandas.git
guowujun
pandas
pandas
master

搜索帮助