aboutsummaryrefslogtreecommitdiff
path: root/docs/sparkr.md
diff options
context:
space:
mode:
authorfelixcheung <felixcheung_m@hotmail.com>2016-04-23 18:20:31 -0700
committerReynold Xin <rxin@databricks.com>2016-04-23 18:20:31 -0700
commit1b7eab74e64f554bbf892c8ef7b7ec00b359d2c0 (patch)
tree931864aba75c033e9fe88b62ea7902489c147ca5 /docs/sparkr.md
parentb45819ac43311dc830a97f15d1278936efca1cc1 (diff)
downloadspark-1b7eab74e64f554bbf892c8ef7b7ec00b359d2c0.tar.gz
spark-1b7eab74e64f554bbf892c8ef7b7ec00b359d2c0.tar.bz2
spark-1b7eab74e64f554bbf892c8ef7b7ec00b359d2c0.zip
[SPARK-12148][SPARKR] fix doc after renaming DataFrame to SparkDataFrame
## What changes were proposed in this pull request? Fixed inadvertent roxygen2 doc changes, added class name change to programming guide Follow up of #12621 ## How was this patch tested? manually checked Author: felixcheung <felixcheung_m@hotmail.com> Closes #12647 from felixcheung/rdataframe.
Diffstat (limited to 'docs/sparkr.md')
-rw-r--r--docs/sparkr.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/sparkr.md b/docs/sparkr.md
index 73e38b8c70..a0b4f93776 100644
--- a/docs/sparkr.md
+++ b/docs/sparkr.md
@@ -384,10 +384,11 @@ You can inspect the search path in R with [`search()`](https://stat.ethz.ch/R-ma
# Migration Guide
-## Upgrading From SparkR 1.5.x to 1.6
+## Upgrading From SparkR 1.5.x to 1.6.x
- - Before Spark 1.6, the default mode for writes was `append`. It was changed in Spark 1.6.0 to `error` to match the Scala API.
+ - Before Spark 1.6.0, the default mode for writes was `append`. It was changed in Spark 1.6.0 to `error` to match the Scala API.
## Upgrading From SparkR 1.6.x to 2.0
- The method `table` has been removed and replaced by `tableToDF`.
+ - The class `DataFrame` has been renamed to `SparkDataFrame` to avoid name conflicts.