Repository: spark
Updated Branches:
  refs/heads/master 96e9afaae -> 75f0efe74


[SPARKR][DOCS] minor code sample update in R programming guide

## What changes were proposed in this pull request?

Fix code style from ad hoc review of RC4 doc

## How was this patch tested?

manual

shivaram

Author: Felix Cheung <felixcheun...@hotmail.com>

Closes #14250 from felixcheung/rdocs2rc4.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/75f0efe7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/75f0efe7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/75f0efe7

Branch: refs/heads/master
Commit: 75f0efe74d0c9a7acb525339c5184b99fee4dafc
Parents: 96e9afa
Author: Felix Cheung <felixcheun...@hotmail.com>
Authored: Mon Jul 18 16:01:57 2016 -0700
Committer: Shivaram Venkataraman <shiva...@cs.berkeley.edu>
Committed: Mon Jul 18 16:01:57 2016 -0700

----------------------------------------------------------------------
 docs/sparkr.md                         | 4 ++--
 examples/src/main/r/RSparkSQLExample.R | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/75f0efe7/docs/sparkr.md
----------------------------------------------------------------------
diff --git a/docs/sparkr.md b/docs/sparkr.md
index a5235b2..dfa5278 100644
--- a/docs/sparkr.md
+++ b/docs/sparkr.md
@@ -54,7 +54,7 @@ if (nchar(Sys.getenv("SPARK_HOME")) < 1) {
   Sys.setenv(SPARK_HOME = "/home/spark")
 }
 library(SparkR, lib.loc = c(file.path(Sys.getenv("SPARK_HOME"), "R", "lib")))
-sc <- sparkR.session(master = "local[*]", sparkConfig = 
list(spark.driver.memory="2g"))
+sparkR.session(master = "local[*]", sparkConfig = list(spark.driver.memory = 
"2g"))
 {% endhighlight %}
 </div>
 
@@ -115,7 +115,7 @@ specifying `--packages` with `spark-submit` or `sparkR` 
commands, or if initiali
 
 <div data-lang="r" markdown="1">
 {% highlight r %}
-sc <- sparkR.session(sparkPackages = "com.databricks:spark-avro_2.11:3.0.0")
+sparkR.session(sparkPackages = "com.databricks:spark-avro_2.11:3.0.0")
 {% endhighlight %}
 </div>
 

http://git-wip-us.apache.org/repos/asf/spark/blob/75f0efe7/examples/src/main/r/RSparkSQLExample.R
----------------------------------------------------------------------
diff --git a/examples/src/main/r/RSparkSQLExample.R 
b/examples/src/main/r/RSparkSQLExample.R
index f20875c..33e88e1 100644
--- a/examples/src/main/r/RSparkSQLExample.R
+++ b/examples/src/main/r/RSparkSQLExample.R
@@ -144,7 +144,7 @@ write.df(df1, "data/test_table/key=1", "parquet", 
"overwrite")
 write.df(df2, "data/test_table/key=2", "parquet", "overwrite")
 
 # Read the partitioned table
-df3 <- read.df("data/test_table", "parquet", mergeSchema="true")
+df3 <- read.df("data/test_table", "parquet", mergeSchema = "true")
 printSchema(df3)
 
 # The final schema consists of all 3 columns in the Parquet files together


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to