pub trait LinearTransformationFactory<Input, Output> {
type Transform: Transformation<Input, Output>;
// Required method
fn create(&self, cols: &[Output]) -> Self::Transform;
}Expand description
Factory trait for creating linear transformations from column data.