-
- Downloads
[SPARK-18862][SPARKR][ML] Split SparkR mllib.R into multiple files
## What changes were proposed in this pull request? SparkR ```mllib.R``` is getting bigger as we add more ML wrappers, I'd like to split it into multiple files to make us easy to maintain: * mllib_classification.R * mllib_clustering.R * mllib_recommendation.R * mllib_regression.R * mllib_stat.R * mllib_tree.R * mllib_utils.R Note: Only reorg, no actual code change. ## How was this patch tested? Existing tests. Author: Yanbo Liang <ybliang8@gmail.com> Closes #16312 from yanboliang/spark-18862.
Showing
- R/pkg/DESCRIPTION 7 additions, 1 deletionR/pkg/DESCRIPTION
- R/pkg/R/mllib.R 0 additions, 2114 deletionsR/pkg/R/mllib.R
- R/pkg/R/mllib_classification.R 417 additions, 0 deletionsR/pkg/R/mllib_classification.R
- R/pkg/R/mllib_clustering.R 456 additions, 0 deletionsR/pkg/R/mllib_clustering.R
- R/pkg/R/mllib_recommendation.R 162 additions, 0 deletionsR/pkg/R/mllib_recommendation.R
- R/pkg/R/mllib_regression.R 448 additions, 0 deletionsR/pkg/R/mllib_regression.R
- R/pkg/R/mllib_stat.R 127 additions, 0 deletionsR/pkg/R/mllib_stat.R
- R/pkg/R/mllib_tree.R 496 additions, 0 deletionsR/pkg/R/mllib_tree.R
- R/pkg/R/mllib_utils.R 119 additions, 0 deletionsR/pkg/R/mllib_utils.R
- R/pkg/inst/tests/testthat/test_mllib_classification.R 341 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_classification.R
- R/pkg/inst/tests/testthat/test_mllib_clustering.R 224 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_clustering.R
- R/pkg/inst/tests/testthat/test_mllib_recommendation.R 65 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_recommendation.R
- R/pkg/inst/tests/testthat/test_mllib_regression.R 417 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_regression.R
- R/pkg/inst/tests/testthat/test_mllib_stat.R 53 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_stat.R
- R/pkg/inst/tests/testthat/test_mllib_tree.R 203 additions, 0 deletionsR/pkg/inst/tests/testthat/test_mllib_tree.R
Loading
Please register or sign in to comment