AddIntColumn adds a new int column with given name. The cells of this column hold a single scalar value.
(name string)
| 271 | // AddIntColumn adds a new int column with given name. |
| 272 | // The cells of this column hold a single scalar value. |
| 273 | func (dt *Table) AddIntColumn(name string) *tensor.Int { |
| 274 | return AddColumn[int](dt, name).(*tensor.Int) |
| 275 | } |
| 276 | |
| 277 | // AddIntTensorColumn adds a new n-dimensional int column with given name |
| 278 | // and dimensionality of each _cell_. |
no outgoing calls