Versions in this module Expand all Collapse all v0 v0.10.1 Nov 8, 2019 Changes in this version + type Comparator string + 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) + 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 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) 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) 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) Set(indexes Indexes, newvalues Series) 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) Type() Type + func (s Series) Val(i int) interface{} + type Type string + const Bool + const Float + const Int + const String