AddStringColumn adds a new String column with given name. The cells of this column hold a single string value.
(name string)
| 237 | // AddStringColumn adds a new String column with given name. |
| 238 | // The cells of this column hold a single string value. |
| 239 | func (dt *Table) AddStringColumn(name string) *tensor.String { |
| 240 | return AddColumn[string](dt, name).(*tensor.String) |
| 241 | } |
| 242 | |
| 243 | // AddFloat64Column adds a new float64 column with given name. |
| 244 | // The cells of this column hold a single scalar value. |
no outgoing calls