Update imputation example to use transform method (#57)

This commit is contained in:
Bill Nunney 2017-03-09 14:41:15 -05:00 committed by Arkadiusz Kondas
parent 39747efdc1
commit 8be19567a2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ $data = [
]; ];
$imputer = new Imputer(null, new MeanStrategy(), Imputer::AXIS_COLUMN); $imputer = new Imputer(null, new MeanStrategy(), Imputer::AXIS_COLUMN);
$imputer->preprocess($data); $imputer->transform($data);
/* /*
$data = [ $data = [