From 1622f854244f35157dcdf5964e6c477dabf58f6c Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Aug 2015 07:35:14 +0800 Subject: [PATCH] update document --- docs/ml-features.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ml-features.md b/docs/ml-features.md index a2faa06dd788e..fb600f0488889 100644 --- a/docs/ml-features.md +++ b/docs/ml-features.md @@ -1119,7 +1119,7 @@ Note that since zero values will probably be transformed to non-zero values, out The following example demonstrates how to load a dataset in libsvm format and then rescale each feature to [0, 1].
-
+
More details can be found in the API docs for [MinMaxScaler](api/scala/index.html#org.apache.spark.ml.feature.MinMaxScaler) and [MinMaxScalerModel](api/scala/index.html#org.apache.spark.ml.feature.MinMaxScalerModel). @@ -1141,10 +1141,10 @@ val scaledData = scalerModel.transform(dataFrame) {% endhighlight %}
-
+
More details can be found in the API docs for -[MinMaxScaler](api/java/index.html#org.apache.spark.ml.feature.MinMaxScaler) and -[MinMaxScalerModel](api/java/index.html#org.apache.spark.ml.feature.MinMaxScalerModel). +[MinMaxScaler](api/java/org/apache/spark/ml/feature/MinMaxScaler.html) and +[MinMaxScalerModel](api/java/org/apache/spark/ml/feature/MinMaxScalerModel.html). {% highlight java %} import org.apache.spark.api.java.JavaRDD; import org.apache.spark.ml.feature.MinMaxScaler;