NumColumns returns the number of columns
()
| 59 | |
| 60 | // NumColumns returns the number of columns |
| 61 | func (dt *Table) NumColumns() int { return len(dt.Columns) } |
| 62 | |
| 63 | // Column returns the tensor at given column index |
| 64 | func (dt *Table) Column(i int) tensor.Tensor { return dt.Columns[i] } |
no outgoing calls