Versions in this module Expand all Collapse all v0 v0.0.6 Nov 28, 2023 v0.0.5 Nov 27, 2023 Changes in this version type Series + func (s Series) Interfaces() ([]interface{}, error) + func (s Series) Times() ([]time.Time, error) v0.0.4 Nov 27, 2023 v0.0.3 Nov 27, 2023 Changes in this version type Element + Interface func() (interface{}, error) type Series + func Interfaces(values interface{}) Series + func Times(values interface{}) Series type Type + const Interface v0.0.2 Nov 27, 2023 Changes in this version type Element + Time func() (time.Time, error) type Type + const Time v0.0.1 Nov 27, 2023 Changes in this version + type Comparator string + const CompFunc + const Eq + const Greater + const GreaterEq + const In + const Less + const LessEq + const Neq + type Element interface + Bool func() (bool, error) + Copy func() Element + Eq func(Element) bool + Float func() float64 + Greater func(Element) bool + GreaterEq func(Element) bool + Int func() (int, error) + Int64 func() (int64, error) + IsNA func() bool + Less func(Element) bool + LessEq func(Element) bool + Neq func(Element) bool + Set func(interface{}) + String func() string + Type func() Type + Val func() ElementValue + type ElementValue interface + type Elements interface + Elem func(int) Element + Len func() int + type Indexes interface + type MapFunction func(Element) Element + type RollingWindow struct + func (r RollingWindow) Mean() (s Series) + func (r RollingWindow) StdDev() (s Series) + type Series struct + Err error + Name string + func Bools(values interface{}) Series + func Floats(values interface{}) Series + func Ints(values interface{}) Series + func Ints64(values interface{}) Series + func New(values interface{}, t Type, name string) Series + func Strings(values interface{}) Series + func (s *Series) Append(values interface{}) + func (s *Series) Error() error + func (s Series) Bool() ([]bool, error) + func (s Series) Compare(comparator Comparator, comparando interface{}) Series + func (s Series) Concat(x Series) Series + func (s Series) Copy() Series + func (s Series) Elem(i int) Element + func (s Series) Empty() Series + func (s Series) Float() []float64 + func (s Series) HasNaN() bool + func (s Series) Int() ([]int, error) + func (s Series) Int64() ([]int64, error) + func (s Series) IsNaN() []bool + func (s Series) Len() int + func (s Series) Map(f MapFunction) Series + func (s Series) Max() float64 + func (s Series) MaxStr() string + func (s Series) Mean() float64 + func (s Series) Median() float64 + func (s Series) Min() float64 + func (s Series) MinStr() string + func (s Series) Order(reverse bool) []int + func (s Series) Quantile(p float64) float64 + func (s Series) Records() []string + func (s Series) Rolling(window int) RollingWindow + func (s Series) Set(indexes Indexes, newvalues Series) Series + func (s Series) Slice(j, k int) Series + func (s Series) StdDev() float64 + func (s Series) Str() string + func (s Series) String() string + func (s Series) Subset(indexes Indexes) Series + func (s Series) Sum() float64 + func (s Series) Type() Type + func (s Series) Val(i int) interface{} + type Type string + const Bool + const Float + const Int + const Int64 + const String