Versions in this module Expand all Collapse all v0 v0.10.1 Nov 8, 2019 Changes in this version + type MapFunction func(Element) Element type Series + func (s Series) Map(f MapFunction) Series + func (s Series) Median() float64 v0.9.0 Oct 3, 2017 Changes in this version + type Elements interface + Elem func(int) Element + Len func() int type Series + func (s Series) Max() float64 + func (s Series) MaxStr() string + func (s Series) Mean() float64 + func (s Series) Min() float64 + func (s Series) MinStr() string + func (s Series) Quantile(p float64) float64 + func (s Series) StdDev() float64 v0.8.0 Dec 12, 2016 Changes in this version + type Element interface + Addr func() string + 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) + IsNA func() bool + Less func(Element) bool + LessEq func(Element) bool + Neq func(Element) bool + Set func(interface{}) Element + String func() string + Type func() Type + Val func() ElementValue + type ElementValue interface type Series + func (s Series) IsNaN() []bool + func (s Series) Order(reverse bool) []int v0.7.0 Nov 27, 2016 Changes in this version + const Bool + const Eq + const Float + const Greater + const GreaterEq + const In + const Int + const Less + const LessEq + const Neq + const String + type Comparator string + type Indexes interface + type Series struct + Err error + Name string + func Bools(values interface{}) Series + func Floats(values interface{}) Series + func Ints(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) Addr() []string + 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) elementInterface + func (s Series) Empty() Series + func (s Series) Float() []float64 + func (s Series) HasNaN() bool + func (s Series) Int() ([]int, error) + func (s Series) Len() int + func (s Series) Records() []string + func (s Series) Set(indexes Indexes, newvalues Series) Series + func (s Series) Str() string + func (s Series) String() string + func (s Series) Subset(indexes Indexes) Series + func (s Series) Type() Type + func (s Series) Val(i int) (interface{}, error) + type Type string