Versions in this module Expand all Collapse all v1 v1.0.1 Jul 26, 2026 v1.0.0 Jul 26, 2026 Changes in this version + func EstimatedSize(f *Frame) int64 + func FormatValue(v any) string + func NullCount(c *Column) int + func SearchExact(f *Frame, needle string) []int + func SearchExactCols(f *Frame, cols []int, needle string) []int + func SearchFuzzy(f *Frame, needle string) []int + func Shape(f *Frame) (rows, cols int) + type Column struct + Cells []any + Name string + Type DType + type DType uint8 + const TypeBool + const TypeDate + const TypeDatetime + const TypeFloat + const TypeInt + const TypeString + func (t DType) String() string + type Frame struct + Columns []Column + func Concat(frames ...*Frame) (*Frame, error) + func InferFrame(f *Frame, mode string, types []string) *Frame + func New(names ...string) *Frame + func (f *Frame) AppendRow(vals []any) + func (f *Frame) Cell(row, col int) any + func (f *Frame) CellString(row, col int) string + func (f *Frame) ColumnIndex(name string) int + func (f *Frame) ColumnNames() []string + func (f *Frame) NumCols() int + func (f *Frame) NumRows() int + func (f *Frame) Row(row int) []any + func (f *Frame) Select(rows []int) *Frame + func (f *Frame) WithCell(row, col int, val any) *Frame + func (f *Frame) WithoutRows(rows []int) *Frame