Creates an array of column vectors for every numeric variable in this data set. The index of the array corresponds to the numeric feature index. This method is faster and more efficient than calling #getNumericColumn(int) when multiple columns are needed. Note, that the columns re
()
| 633 | * @return an array of the column vectors |
| 634 | */ |
| 635 | @SuppressWarnings("unchecked") |
| 636 | public Vec[] getNumericColumns() |
| 637 | { |
| 638 | return getNumericColumns(Collections.EMPTY_SET); |
| 639 | } |
| 640 | |
| 641 | /** |
| 642 | * Creates an array of column vectors for every numeric variable in this |
no test coverage detected