Uh oh!
There was an error while loading. Please reload this page.
[SPARK-19386][SPARKR][DOC] Bisecting k-means in SparkR documentation - #16767
[SPARK-19386][SPARKR][DOC] Bisecting k-means in SparkR documentation#16767krishnakalyan3 wants to merge 5 commits into
Conversation
AmplabJenkins
commented
Feb 1, 2017
Can one of the admins verify this patch? |
| * Latent Dirichlet Allocation (LDA) | ||
| * Bisecting $k$-means |
There was a problem hiding this comment.
@felixcheung could you please let me know whats wrong here?
There was a problem hiding this comment.
these model names are in order
#### Clustering
* Gaussian Mixture Model (GMM)
* $k$-means Clustering
* Latent Dirichlet Allocation (LDA)
* Bisecting $k$-means
should be
#### Clustering
* Bisecting $k$-means
* Gaussian Mixture Model (GMM)
* $k$-means Clustering
* Latent Dirichlet Allocation (LDA)
| perplexity | ||
| ``` | ||
| #### Bisecting k-means |
There was a problem hiding this comment.
same here. the model sections are in alphabetic order
felixcheung
commented
Feb 1, 2017
| <div data-lang="r" markdown="1"> | ||
| Refer to the [R API docs](api/R/spark.bisectingKmeans.html) for more details. {% include_example r/ml/bisectingKmeans.R %} |
There was a problem hiding this comment.
you will need to add this file r/ml/bisectingKmeans.R
There was a problem hiding this comment.
and this {% include_example r/ml/bisectingKmeans.R %} should be a separate line
| Refer to the [R API docs](api/R/spark.bisectingKmeans.html) for more details. {% include_example r/ml/bisectingKmeans.R %} | ||
| {% include_example r/ml/lda.R %} |
There was a problem hiding this comment.
R function???s something wrong?
There was a problem hiding this comment.
I don't see the change here either. Is there something wrong with your editor? node???s
5ba47b1 to
f907343Compare| sparkR.session(appName = "SparkR-ML-bisectingKmeans-example") | ||
| # $example on$ | ||
| irisDF <- suppressWarnings(createDataFrame(iris)) |
There was a problem hiding this comment.
suppressWarnings should not appear in example.
| fitted.model <- fitted(model, "centers") | ||
| # Model summary | ||
| showDF(fitted.model) |
There was a problem hiding this comment.
Model Summary should use summary method. Otherwise, change the comment.
krishnakalyan3
commented
Feb 1, 2017
@wangmiao1981 sorry, had made a erroneous commit. Could you please review the PR?. |
krishnakalyan3
commented
Feb 2, 2017
felixcheung
commented
Feb 2, 2017
looking good to me. I'll wait for @wangmiao1981 to review. |
wangmiao1981
commented
Feb 2, 2017
LGTM |
felixcheung
commented
Feb 3, 2017
merged to master |
wangmiao1981
commented
Feb 4, 2017
Jenkins build was not triggered for the last revision. It breaks the build. |
felixcheung
commented
Feb 4, 2017
ouch, Jenkins was never run the entire time. I need to go double check why AppVeyor is passing. |
## What changes were proposed in this pull request? Update programming guide, example and vignette with Bisecting k-means. Author: krishnakalyan3 <krishnakalyan3@gmail.com> Closesapache#16767 from krishnakalyan3/bisecting-kmeans.
What changes were proposed in this pull request?
Update programming guide, example and vignette with Bisecting k-means.