diff --git a/scripts/builtin/imputeByKNN.dml b/scripts/builtin/imputeByKNN.dml index b560c947993..b048b76d75d 100644 --- a/scripts/builtin/imputeByKNN.dml +++ b/scripts/builtin/imputeByKNN.dml @@ -26,43 +26,38 @@ # the missing values by column means. Currently, only the column with the most # missing values is actually imputed. # -# ------------------------------------------------------------------------------ +# --------------------------------------------------------------------------------- # INPUT: -# ------------------------------------------------------------------------------ -# X Matrix with missing values, which are represented as NaNs -# method Method used for imputing missing values with different performance -# and accuracy tradeoffs: -# 'dist' (default): Compute all-pairs distances and impute the -# missing values by closest. O(N^2 * #features) -# 'dist_missing': Compute distances between data and records with -# missing values. O(N*M * #features), assuming -# that the number of records with MV is M<