proxy.golang.org : github.com/goki/etable/v2 : v2.0.0-dev0.0.2
Package etable provides a DataTable structure (also known as a DataFrame) which is a collection of columnar data all having the same number of rows. Each column is an etensor.Tensor. The following sub-packages are included: * bitslice is a Go slice of bytes []byte that has methods for setting individual bits, as if it was a slice of bools, while being 8x more memory efficient. This is used for encoding null entries in etensor, and as a Tensor of bool / bits there as well, and is generally very useful for binary (boolean) data. * etensor is the emer implementation of a Tensor (n-dimensional array) object. etensor.Tensor is an interface that applies to many different type-specific instances, such as etensor.Float32. A tensor is just a etensor.Shape plus a slice holding the specific data type. Our tensor is based directly on the [Apache Arrow](https://github.com/apache/arrow/tree/master/go) project's tensor, and it fully interoperates with it. Arrow tensors are designed to be read-only, and we needed some extra support to make our etable.Table work well, so we had to roll our own. Our tensors also interoperate fully with Gonum's 2D-specific Matrix type for the 2D case, and can use the gonum/floats and stats routines for raw arithmetic etc. * etable is our Go version of DataTable from C++ emergent, which is widely useful for holding input patterns to present to the network, and logs of output from the network, among many other uses. A etable.Table is a collection of etensor.Tensor columns, that are all aligned along the outer-most *row* dimension. Index-based indirection is supported via optional args, but we do not take on the burden of ensuring full updating of the indexes across all operations, which greatly simplifies things. The etable.Table should interoperate with the under-development gonum DataFrame structure among others. The use of this data structure is always optional and orthogonal to the core network algorithm code -- in Python the pandas library has a suitable DataFrame structure that can be used instead.
Registry -
Documentation -
Download -
JSON
purl: pkg:golang/github.com/goki/etable/v2@v2.0.0-dev0.0.2
Published:
Indexed:
- git.sr.ht/~sbinet/gg v0.3.1
- github.com/BurntSushi/freetype-go v0.0.0-20160129220410-b763ddbfe298
- github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966
- github.com/BurntSushi/xgb v0.0.0-20210121224620-deaf085860bc
- github.com/BurntSushi/xgbutil v0.0.0-20190907113008-ad855c713046
- github.com/Masterminds/vcs v1.13.3
- github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b
- github.com/akutz/sortfold v0.2.1
- github.com/alecthomas/chroma/v2 v2.7.0
- github.com/anthonynsimon/bild v0.13.0
- github.com/antonmedv/expr v1.12.5
- github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40
- github.com/aymerick/douceur v0.2.0
- github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b
- github.com/dlclark/regexp2 v1.8.1
- github.com/fatih/camelcase v1.0.0
- github.com/fsnotify/fsnotify v1.6.0
- github.com/gabriel-vasile/mimetype v1.4.2
- github.com/go-fonts/liberation v0.3.0
- github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b
- github.com/go-gl/mathgl v1.0.0
- github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9
- github.com/go-pdf/fpdf v0.7.0
- github.com/goki/freetype v1.0.1
- github.com/goki/gi v1.3.19
- github.com/goki/go-difflib v1.2.1
- github.com/goki/gosl v1.0.13
- github.com/goki/ki v1.1.11
- github.com/goki/kigen v1.0.2
- github.com/goki/mat32 v1.0.15
- github.com/goki/pi v1.0.27
- github.com/goki/prof v1.0.0
- github.com/goki/vci v1.0.1
- github.com/goki/vgpu v1.0.27
- github.com/goki/vulkan v1.0.6
- github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
- github.com/gorilla/css v1.0.0
- github.com/h2non/filetype v1.1.3
- github.com/iancoleman/strcase v0.2.0
- github.com/jinzhu/copier v0.3.5
- github.com/mitchellh/go-homedir v1.1.0
- github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef
- github.com/srwiley/scanx v0.0.0-20190309010443-e94503791388
- golang.org/x/exp v0.0.0-20230321023759-10a507213a29
- golang.org/x/image v0.6.0
- golang.org/x/mod v0.10.0
- golang.org/x/net v0.8.0
- golang.org/x/sys v0.7.0
- golang.org/x/text v0.8.0
- golang.org/x/tools v0.7.0
- golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
- gonum.org/v1/gonum v0.12.0
- gonum.org/v1/plot v0.12.0