1 Star 4 Fork 10

王布衣 / pandas

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vector_basic.go 408 Bytes
一键复制 编辑 原始数据 按行查看 历史
package pandas
import (
"gitee.com/quant1x/gox/api"
"gitee.com/quant1x/num"
)
func (this vector[T]) Name() string {
return defaultSeriesName()
}
func (this vector[T]) Rename(name string) {
_ = name
}
func (this vector[T]) Type() Type {
return num.CheckoutRawType(this)
}
func (this vector[T]) Values() any {
return []T(this)
}
func (this vector[T]) Reverse() Series {
return api.Reverse(this)
}
Go
1
https://gitee.com/quant1x/pandas.git
git@gitee.com:quant1x/pandas.git
quant1x
pandas
pandas
v1.4.5

搜索帮助