1 Star 4 Fork 11

王布衣 / pandas

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
abs.go 219 Bytes
一键复制 编辑 原始数据 按行查看 历史
package formula
import (
"gitee.com/quant1x/num"
"gitee.com/quant1x/pandas"
)
// ABS 计算S的绝对值
func ABS(S pandas.Series) pandas.Series {
s := S.DTypes()
d := num.Abs(s)
return pandas.SliceToSeries(d)
}
Go
1
https://gitee.com/quant1x/pandas.git
git@gitee.com:quant1x/pandas.git
quant1x
pandas
pandas
v1.4.7

搜索帮助