AddRows adds n rows to each of the columns
(n int)
| 310 | |
| 311 | // AddRows adds n rows to each of the columns |
| 312 | func (dt *Table) AddRows(n int) { //types:add |
| 313 | dt.SetNumRows(dt.Rows + n) |
| 314 | } |
| 315 | |
| 316 | // SetNumRows sets the number of rows in the table, across all columns |
| 317 | // if rows = 0 then effective number of rows in tensors is 1, as this dim cannot be 0 |
no test coverage detected