aboutsummaryrefslogtreecommitdiff
path: root/mllib/pom.xml
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2015-01-29 10:11:44 -0800
committerXiangrui Meng <meng@databricks.com>2015-01-29 10:11:44 -0800
commita3dc6184862345c459d1fba475b1c9210038a913 (patch)
tree706a2dcab1d4c0decf5fe6269fcabf56e8d17b2f /mllib/pom.xml
parent5ad78f62056f2560cd371ee964111a646806d0ff (diff)
downloadspark-a3dc6184862345c459d1fba475b1c9210038a913.tar.gz
spark-a3dc6184862345c459d1fba475b1c9210038a913.tar.bz2
spark-a3dc6184862345c459d1fba475b1c9210038a913.zip
[SPARK-5477] refactor stat.py
There is only a single `stat.py` file for the `mllib.stat` package. We recently added `MultivariateGaussian` under `mllib.stat.distribution` in Scala/Java. It would be nice to refactor `stat.py` and make it easy to expand. Note that `ChiSqTestResult` is moved from `mllib.stat` to `mllib.stat.test`. The latter is used in Scala/Java. It is only used in the return value of `Statistics.chiSqTest`, so this should be an okay change. davies Author: Xiangrui Meng <meng@databricks.com> Closes #4266 from mengxr/py-stat-refactor and squashes the following commits: 1a5e1db [Xiangrui Meng] refactor stat.py
Diffstat (limited to 'mllib/pom.xml')
-rw-r--r--mllib/pom.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/mllib/pom.xml b/mllib/pom.xml
index 7b7beaf59d..fc2b2cc09c 100644
--- a/mllib/pom.xml
+++ b/mllib/pom.xml
@@ -125,6 +125,7 @@
<directory>../python</directory>
<includes>
<include>pyspark/mllib/*.py</include>
+ <include>pyspark/mllib/stat/*.py</include>
<include>pyspark/ml/*.py</include>
<include>pyspark/ml/param/*.py</include>
</includes>