Returns the name used for the i 'th numeric attribute. @param i the i th attribute. @return the name used for the i 'th numeric attribute.
(int i )
| 82 | * @return the name used for the <tt>i</tt>'th numeric attribute. |
| 83 | */ |
| 84 | public String getNumericName(int i ) |
| 85 | { |
| 86 | if(i < getNumNumericalVars() && i >= 0) |
| 87 | return numericalVariableNames == null ? null : numericalVariableNames.get(i); |
| 88 | else |
| 89 | throw new IndexOutOfBoundsException("Can not acces variable for invalid index " + i ); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Returns the name used for the <tt>i</tt>'th categorical attribute. |
no test coverage detected