1 Star 4 Fork 13

王布衣/pandas

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
type_dtype.go 446 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-06-06 07:34 . 更新依赖库版本
package stat
import "gitee.com/quant1x/gox/num"
type DType = float64
type Int = int32
// DTypeIsNaN 判断DType是否NaN
func DTypeIsNaN(d DType) bool {
return Float64IsNaN(d)
}
// Slice2DType 切片转DType
func Slice2DType(v any) []DType {
return SliceToFloat64(v)
}
// Any2DType any转DType
func Any2DType(v any) DType {
return AnyToFloat64(v)
}
// DType切片转int32切片
func DType2Int(d []DType) []Int {
return num.ToInt32(d)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/pandas.git
git@gitee.com:quant1x/pandas.git
quant1x
pandas
pandas
v1.0.0

搜索帮助