@param feature the value of feature @param nCat the value of nCat @param catF the value of catF @param numF the value of numF
(int feature, int nCat, Set<Integer> catF, Set<Integer> numF)
| 193 | * @param numF the value of numF |
| 194 | */ |
| 195 | static protected void removeFeature(int feature, int nCat, Set<Integer> catF, Set<Integer> numF) |
| 196 | { |
| 197 | if(feature >= nCat) |
| 198 | numF.remove(feature-nCat); |
| 199 | else |
| 200 | catF.remove(feature); |
| 201 | } |
| 202 | |
| 203 | @Override |
| 204 | public DataPoint transform(DataPoint dp) |
no test coverage detected