Returns a new data point that is a transformation of the original data point. This new data point is a different object, but may contain the same references as the original data point. It is not guaranteed that you can mutate the transformed point without having a side effect on the original point.
(DataPoint dp)
| 32 | * @return a transformed data point |
| 33 | */ |
| 34 | public DataPoint transform(DataPoint dp); |
| 35 | |
| 36 | /** |
| 37 | * Fits this transform to the given dataset. Some transforms can only be |
no outgoing calls