Documentation
¶
Index ¶
- func CellIndex(r string) (int, int)
- func CellRef(i, j int) string
- func ColIndex(r string) int
- func ColRef(i int) string
- func RowIndex(r string) int
- func RowRef(i int) string
- func Time(v dt.Value) time.Time
- func Value(v time.Time) dt.Value
- type Cell
- type CellIter
- type Data
- type Reader
- func (a *Reader) Drop(o int) *Reader
- func (a *Reader) Head(o int) *Reader
- func (a *Reader) Read(r io.Reader) (*dt.Frame, error)
- func (a *Reader) ReadFile(name string) (*dt.Frame, error)
- func (a *Reader) ReadWorkbook(workbook *Workbook) (frame *dt.Frame, err error)
- func (a *Reader) ReadZip(zr *zip.Reader) (*dt.Frame, error)
- func (a *Reader) Sep(o string) *Reader
- func (a *Reader) Sheet(o string) *Reader
- func (a *Reader) Suffix(o string) *Reader
- func (a *Reader) Tail(o int) *Reader
- type Rel
- type Rels
- type Row
- type RowIter
- type SItem
- type SSTable
- type Sheet
- type Workbook
- type Writer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CellIter ¶
type CellIter struct {
// contains filtered or unexported fields
}
CellIter is a cell iter.
type Reader ¶
type Reader struct {
// contains filtered or unexported fields
}
Reader is the xlsx reader.
func (*Reader) ReadWorkbook ¶
ReadWorkbook reads a frame from the workbook.
type RowIter ¶
type RowIter struct {
// contains filtered or unexported fields
}
RowIter is a row iter.
type SSTable ¶
type SSTable struct {
Items []SItem `xml:"si"`
}
SSTable is the shared strings table.
type Sheet ¶
type Sheet struct { ID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr"` Name string `xml:"name,attr"` // contains filtered or unexported fields }
Sheet is a sheet.
type Workbook ¶
type Workbook struct { Sheets []*Sheet `xml:"sheets>sheet"` // contains filtered or unexported fields }
Workbook is a workbook.
func OpenReader ¶
OpenReader opens the workbook from a reader.
Click to show internal directories.
Click to hide internal directories.