aboutsummaryrefslogtreecommitdiff
path: root/docs/mllib-classification-regression.md
diff options
context:
space:
mode:
authormartinzapletal <zapletal-martin@email.cz>2015-02-15 09:10:03 -0800
committerXiangrui Meng <meng@databricks.com>2015-02-15 09:10:03 -0800
commit61eb12674b90143388a01c22bf51cb7d02ab0447 (patch)
tree686e717016f3cb685ec27df461c7644e2a7b121e /docs/mllib-classification-regression.md
parentc771e475c449fe07cf45f37bdca2ba6ce9600bfc (diff)
downloadspark-61eb12674b90143388a01c22bf51cb7d02ab0447.tar.gz
spark-61eb12674b90143388a01c22bf51cb7d02ab0447.tar.bz2
spark-61eb12674b90143388a01c22bf51cb7d02ab0447.zip
[MLLIB][SPARK-5502] User guide for isotonic regression
User guide for isotonic regression added to docs/mllib-regression.md including code examples for Scala and Java. Author: martinzapletal <zapletal-martin@email.cz> Closes #4536 from zapletal-martin/SPARK-5502 and squashes the following commits: 67fe773 [martinzapletal] SPARK-5502 reworded model prediction rules to use more general language rather than the code/implementation specific terms 80bd4c3 [martinzapletal] SPARK-5502 created docs page for isotonic regression, added links to the page, updated data and examples 7d8136e [martinzapletal] SPARK-5502 Added documentation for Isotonic regression including examples for Scala and Java 504b5c3 [martinzapletal] SPARK-5502 Added documentation for Isotonic regression including examples for Scala and Java
Diffstat (limited to 'docs/mllib-classification-regression.md')
-rw-r--r--docs/mllib-classification-regression.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/mllib-classification-regression.md b/docs/mllib-classification-regression.md
index 719cc95767..5b9b4dd83b 100644
--- a/docs/mllib-classification-regression.md
+++ b/docs/mllib-classification-regression.md
@@ -23,7 +23,7 @@ the supported algorithms for each type of problem.
<td>Multiclass Classification</td><td>decision trees, naive Bayes</td>
</tr>
<tr>
- <td>Regression</td><td>linear least squares, Lasso, ridge regression, decision trees</td>
+ <td>Regression</td><td>linear least squares, Lasso, ridge regression, decision trees, isotonic regression</td>
</tr>
</tbody>
</table>
@@ -35,3 +35,4 @@ More details for these methods can be found here:
* [linear regression (least squares, Lasso, ridge)](mllib-linear-methods.html#linear-least-squares-lasso-and-ridge-regression)
* [Decision trees](mllib-decision-tree.html)
* [Naive Bayes](mllib-naive-bayes.html)
+* [Isotonic regression](mllib-isotonic-regression.html)