Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomSeries ¶
type CustomSeries struct {
// contains filtered or unexported fields
}
type DataFrame ¶
type DataFrame interface {
NRow() int
NCol() int
GetAllSeries() []Series
GetSeries(name string) (index int, s Series, ok bool)
SetSeries(series Series) error
// SetSeriesDirectly set series by index, without looking up by name of series.
SetSeriesDirectly(index int, series Series) error
AppendSeries(series ...Series) error
Copy() DataFrame
Select(indexes []int) DataFrame
String() string
}
func NewDataFrame ¶
type Option ¶
type Option func(*optionValues)
func WithFormatter ¶
func WithFormatter(f formatter) Option
type Series ¶
type Series interface {
Type() Type
Name() string
Rename(s string)
Len() int
Copy() Series
Select(indexed []int) Series
String() string
GetBool(i int) bool
SetBool(i int, v bool)
GetNumber(i int) float64
SetNumber(i int, v float64)
GetString(i int) string
SetString(i int, v string)
IsNA(i int) bool
SetNA(i int)
}
func NewBoolSeries ¶
func NewNumberSeries ¶
func NewPlaceholderSeries ¶
func NewStringSeries ¶
Click to show internal directories.
Click to hide internal directories.