Returns the number of features in this data set, which is the sum of #getNumCategoricalVars() and #getNumNumericalVars() @return the total number of features in this data set
()
| 754 | * @return the total number of features in this data set |
| 755 | */ |
| 756 | public int getNumFeatures() |
| 757 | { |
| 758 | return getNumCategoricalVars() + getNumNumericalVars(); |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * Returns a new version of this data set that is of the same type, and |