代码拉取完成,页面将自动刷新
同步操作将从 王布衣/pandas 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package pandas
import (
"gitee.com/quant1x/pandas/stat"
"reflect"
)
// Diff 元素的第一个离散差
// First discrete difference of element.
// Calculates the difference of a {klass} element compared with another
// element in the {klass} (default is element in previous row).
func (self *NDFrame) Diff(param any) (s stat.Series) {
if !(self.type_ == stat.SERIES_TYPE_INT64 || self.type_ == stat.SERIES_TYPE_FLOAT32 || self.type_ == stat.SERIES_TYPE_FLOAT64) {
return NewSeries(stat.SERIES_TYPE_INVAILD, "", "")
}
var N []stat.DType
switch v := param.(type) {
case int:
N = stat.Repeat[stat.DType](stat.DType(v), self.Len())
case stat.Series:
vs := v.DTypes()
N = stat.Align(vs, stat.DTypeNaN, self.Len())
default:
//periods = 1
N = stat.Repeat[stat.DType](stat.DType(1), self.Len())
}
r := stat.RollingAndExpandingMixin{
Window: N,
Series: self,
}
var d []stat.DType
var front = stat.DTypeNaN
for _, block := range r.GetBlocks() {
vs := reflect.ValueOf(block.Values())
vl := vs.Len()
if vl == 0 {
d = append(d, stat.DTypeNaN)
continue
}
vf := vs.Index(0).Interface()
vc := vs.Index(vl - 1).Interface()
cu := stat.Any2DType(vc)
cf := stat.Any2DType(vf)
if stat.DTypeIsNaN(cu) || stat.DTypeIsNaN(front) {
front = cf
d = append(d, stat.DTypeNaN)
continue
}
diff := cu - front
d = append(d, diff)
front = cf
}
s = NewSeries(stat.SERIES_TYPE_DTYPE, r.Series.Name(), d)
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。