[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/1713 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enab

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50939858 LGTM. Merged into master. Thanks!! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50939505 QA results for PR 1713:- This patch PASSES unit tests.- This patch merges cleanly- This patch adds the following public classes (experimental):class Statistics(object):Fo

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15718783 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15718765 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/stat/correlation/Correlation.scala --- @@ -49,43 +49,48 @@ private[stat] trait Correlation { }

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50933645 QA tests have started for PR 1713. This patch merges cleanly. View progress: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/17698/consoleFull --- If

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread dorx
Github user dorx commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15717902 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15717696 --- Diff: python/pyspark/mllib/stat.py --- @@ -0,0 +1,103 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread dorx
Github user dorx commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15717671 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/stat/correlation/Correlation.scala --- @@ -49,43 +49,48 @@ private[stat] trait Correlation { }

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15717240 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50925018 QA results for PR 1713:- This patch PASSES unit tests.- This patch merges cleanly- This patch adds the following public classes (experimental):class Statistics(object):Fo

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50919220 QA tests have started for PR 1713. This patch merges cleanly. View progress: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/17688/consoleFull --- If

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread dorx
Github user dorx commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15709151 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread srowen
Github user srowen commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15689358 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50858129 QA results for PR 1713:- This patch PASSES unit tests.- This patch merges cleanly- This patch adds the following public classes (experimental):class Statistics(object):Fo

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15685067 --- Diff: mllib/src/test/scala/org/apache/spark/mllib/api/python/PythonMLLibAPISuite.scala --- @@ -59,10 +59,25 @@ class PythonMLLibAPISuite extends FunSuite

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15685050 --- Diff: mllib/src/test/scala/org/apache/spark/mllib/api/python/PythonMLLibAPISuite.scala --- @@ -59,10 +59,25 @@ class PythonMLLibAPISuite extends FunSuite

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15684998 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15685005 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala --- @@ -456,6 +458,37 @@ class PythonMLLibAPI extends Serializable {

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15684640 --- Diff: python/pyspark/mllib/stat.py --- @@ -0,0 +1,103 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15684617 --- Diff: python/pyspark/mllib/stat.py --- @@ -0,0 +1,103 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread dorx
Github user dorx commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15684527 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/stat/correlation/Correlation.scala --- @@ -49,43 +49,48 @@ private[stat] trait Correlation { }

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-08-01 Thread mengxr
Github user mengxr commented on a diff in the pull request: https://github.com/apache/spark/pull/1713#discussion_r15684424 --- Diff: mllib/src/main/scala/org/apache/spark/mllib/stat/correlation/Correlation.scala --- @@ -49,43 +49,48 @@ private[stat] trait Correlation { }

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-07-31 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50854587 QA tests have started for PR 1713. This patch merges cleanly. View progress: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/17657/consoleFull --- If

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-07-31 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50853374 QA results for PR 1713:- This patch FAILED unit tests.- This patch merges cleanly- This patch adds the following public classes (experimental):class Statistics(object):Fo

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-07-31 Thread SparkQA
Github user SparkQA commented on the pull request: https://github.com/apache/spark/pull/1713#issuecomment-50853328 QA tests have started for PR 1713. This patch merges cleanly. View progress: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/17653/consoleFull --- If

[GitHub] spark pull request: [SPARK-2786][mllib] Python correlations

2014-07-31 Thread dorx
GitHub user dorx opened a pull request: https://github.com/apache/spark/pull/1713 [SPARK-2786][mllib] Python correlations You can merge this pull request into a Git repository by running: $ git pull https://github.com/dorx/spark pythonCorrelation Alternatively you can review