aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorYuhao Yang <hhbyyh@gmail.com>2016-03-11 09:31:35 +0200
committerNick Pentreath <nick.pentreath@gmail.com>2016-03-11 09:31:35 +0200
commit0b713e0455d01999d5a027ddc2ea8527eb085b34 (patch)
treef4a4f05620e8ee3787136ba72f158bbd7e761523 /examples
parent6ca990fb366cf68cd9d5afb433725d28f07e51a0 (diff)
downloadspark-0b713e0455d01999d5a027ddc2ea8527eb085b34.tar.gz
spark-0b713e0455d01999d5a027ddc2ea8527eb085b34.tar.bz2
spark-0b713e0455d01999d5a027ddc2ea8527eb085b34.zip
[SPARK-13512][ML] add example and doc for MaxAbsScaler
## What changes were proposed in this pull request? jira: https://issues.apache.org/jira/browse/SPARK-13512 Add example and doc for ml.feature.MaxAbsScaler. ## How was this patch tested? unit tests Author: Yuhao Yang <hhbyyh@gmail.com> Closes #11392 from hhbyyh/maxabsdoc.
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/java/org/apache/spark/examples/ml/JavaMaxAbsScalerExample.java52
-rw-r--r--examples/src/main/scala/org/apache/spark/examples/ml/MaxAbsScalerExample.scala49
2 files changed, 101 insertions, 0 deletions
diff --git a/examples/src/main/java/org/apache/spark/examples/ml/JavaMaxAbsScalerExample.java b/examples/src/main/java/org/apache/spark/examples/ml/JavaMaxAbsScalerExample.java
new file mode 100644
index 0000000000..b1e3b9137f
--- /dev/null
+++ b/examples/src/main/java/org/apache/spark/examples/ml/JavaMaxAbsScalerExample.java
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.spark.examples.ml;
+
+import org.apache.spark.SparkConf;
+import org.apache.spark.api.java.JavaSparkContext;
+// $example on$
+import org.apache.spark.ml.feature.MaxAbsScaler;
+import org.apache.spark.ml.feature.MaxAbsScalerModel;
+import org.apache.spark.sql.DataFrame;
+// $example off$
+import org.apache.spark.sql.SQLContext;
+
+public class JavaMaxAbsScalerExample {
+
+ public static void main(String[] args) {
+ SparkConf conf = new SparkConf().setAppName("JavaMaxAbsScalerExample");
+ JavaSparkContext jsc = new JavaSparkContext(conf);
+ SQLContext jsql = new SQLContext(jsc);
+
+ // $example on$
+ DataFrame dataFrame = jsql.read().format("libsvm").load("data/mllib/sample_libsvm_data.txt");
+ MaxAbsScaler scaler = new MaxAbsScaler()
+ .setInputCol("features")
+ .setOutputCol("scaledFeatures");
+
+ // Compute summary statistics and generate MaxAbsScalerModel
+ MaxAbsScalerModel scalerModel = scaler.fit(dataFrame);
+
+ // rescale each feature to range [-1, 1].
+ DataFrame scaledData = scalerModel.transform(dataFrame);
+ scaledData.show();
+ // $example off$
+ jsc.stop();
+ }
+
+}
diff --git a/examples/src/main/scala/org/apache/spark/examples/ml/MaxAbsScalerExample.scala b/examples/src/main/scala/org/apache/spark/examples/ml/MaxAbsScalerExample.scala
new file mode 100644
index 0000000000..aafb5efd69
--- /dev/null
+++ b/examples/src/main/scala/org/apache/spark/examples/ml/MaxAbsScalerExample.scala
@@ -0,0 +1,49 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// scalastyle:off println
+package org.apache.spark.examples.ml
+
+import org.apache.spark.{SparkConf, SparkContext}
+// $example on$
+import org.apache.spark.ml.feature.MaxAbsScaler
+// $example off$
+import org.apache.spark.sql.SQLContext
+
+object MaxAbsScalerExample {
+ def main(args: Array[String]): Unit = {
+ val conf = new SparkConf().setAppName("MaxAbsScalerExample")
+ val sc = new SparkContext(conf)
+ val sqlContext = new SQLContext(sc)
+
+ // $example on$
+ val dataFrame = sqlContext.read.format("libsvm").load("data/mllib/sample_libsvm_data.txt")
+ val scaler = new MaxAbsScaler()
+ .setInputCol("features")
+ .setOutputCol("scaledFeatures")
+
+ // Compute summary statistics and generate MaxAbsScalerModel
+ val scalerModel = scaler.fit(dataFrame)
+
+ // rescale each feature to range [-1, 1]
+ val scaledData = scalerModel.transform(dataFrame)
+ scaledData.show()
+ // $example off$
+ sc.stop()
+ }
+}
+// scalastyle:on println