http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/structField.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/structField.html 
b/site/docs/2.2.2/api/R/structField.html
new file mode 100644
index 0000000..24f5e24
--- /dev/null
+++ b/site/docs/2.2.2/api/R/structField.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: structField</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for structField 
{SparkR}"><tr><td>structField {SparkR}</td><td style="text-align: right;">R 
Documentation</td></tr></table>
+
+<h2>structField</h2>
+
+<h3>Description</h3>
+
+<p>Create a structField object that contains the metadata for a single field 
in a schema.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+structField(x, ...)
+
+## S3 method for class 'jobj'
+structField(x, ...)
+
+## S3 method for class 'character'
+structField(x, type, nullable = TRUE, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>the name of the field.</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>additional argument(s) passed to the method.</p>
+</td></tr>
+<tr valign="top"><td><code>type</code></td>
+<td>
+<p>The data type of the field</p>
+</td></tr>
+<tr valign="top"><td><code>nullable</code></td>
+<td>
+<p>A logical vector indicating whether or not the field is nullable</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A structField object.
+</p>
+
+
+<h3>Note</h3>
+
+<p>structField since 1.4.0
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D field1 &lt;- structField(&quot;a&quot;, &quot;integer&quot;)
+##D field2 &lt;- structField(&quot;c&quot;, &quot;string&quot;)
+##D field3 &lt;- structField(&quot;avg&quot;, &quot;double&quot;)
+##D schema &lt;-  structType(field1, field2, field3)
+##D df1 &lt;- gapply(df, list(&quot;a&quot;, &quot;c&quot;),
+##D               function(key, x) { y &lt;- data.frame(key, mean(x$b), 
stringsAsFactors = FALSE) },
+##D               schema)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/structType.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/structType.html 
b/site/docs/2.2.2/api/R/structType.html
new file mode 100644
index 0000000..b33a0e6
--- /dev/null
+++ b/site/docs/2.2.2/api/R/structType.html
@@ -0,0 +1,74 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: structType</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for structType {SparkR}"><tr><td>structType 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>structType</h2>
+
+<h3>Description</h3>
+
+<p>Create a structType object that contains the metadata for a SparkDataFrame. 
Intended for
+use with createDataFrame and toDF.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+structType(x, ...)
+
+## S3 method for class 'jobj'
+structType(x, ...)
+
+## S3 method for class 'structField'
+structType(x, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a structField object (created with the field() function)</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>additional structField objects</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>a structType object
+</p>
+
+
+<h3>Note</h3>
+
+<p>structType since 1.4.0
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D schema &lt;-  structType(structField(&quot;a&quot;, &quot;integer&quot;), 
structField(&quot;c&quot;, &quot;string&quot;),
+##D                       structField(&quot;avg&quot;, &quot;double&quot;))
+##D df1 &lt;- gapply(df, list(&quot;a&quot;, &quot;c&quot;),
+##D               function(key, x) { y &lt;- data.frame(key, mean(x$b), 
stringsAsFactors = FALSE) },
+##D               schema)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/subset.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/subset.html 
b/site/docs/2.2.2/api/R/subset.html
new file mode 100644
index 0000000..8c7ed90
--- /dev/null
+++ b/site/docs/2.2.2/api/R/subset.html
@@ -0,0 +1,164 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: Subset</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for subset {SparkR}"><tr><td>subset 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Subset</h2>
+
+<h3>Description</h3>
+
+<p>Return subsets of SparkDataFrame according to given conditions
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+subset(x, ...)
+
+## S4 method for signature 'SparkDataFrame,numericOrcharacter'
+x[[i]]
+
+## S4 replacement method for signature 'SparkDataFrame,numericOrcharacter'
+x[[i]] &lt;- value
+
+## S4 method for signature 'SparkDataFrame'
+x[i, j, ..., drop = F]
+
+## S4 method for signature 'SparkDataFrame'
+subset(x, subset, select, drop = F, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a SparkDataFrame.</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>currently not used.</p>
+</td></tr>
+<tr valign="top"><td><code>i, subset</code></td>
+<td>
+<p>(Optional) a logical expression to filter on rows.
+For extract operator [[ and replacement operator [[&lt;-, the indexing 
parameter for
+a single Column.</p>
+</td></tr>
+<tr valign="top"><td><code>value</code></td>
+<td>
+<p>a Column or an atomic vector in the length of 1 as literal value, or 
<code>NULL</code>.
+If <code>NULL</code>, the specified Column is dropped.</p>
+</td></tr>
+<tr valign="top"><td><code>j, select</code></td>
+<td>
+<p>expression for the single Column or a list of columns to select from the 
SparkDataFrame.</p>
+</td></tr>
+<tr valign="top"><td><code>drop</code></td>
+<td>
+<p>if TRUE, a Column will be returned if the resulting dataset has only one 
column.
+Otherwise, a SparkDataFrame will always be returned.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A new SparkDataFrame containing only the rows that meet the condition with 
selected columns.
+</p>
+
+
+<h3>Note</h3>
+
+<p>[[ since 1.4.0
+</p>
+<p>[[&lt;- since 2.1.1
+</p>
+<p>[ since 1.4.0
+</p>
+<p>subset since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p><a href="withColumn.html">withColumn</a>
+</p>
+<p>Other SparkDataFrame functions: <code><a 
href="SparkDataFrame.html">SparkDataFrame-class</a></code>,
+<code><a href="summarize.html">agg</a></code>, <code><a 
href="arrange.html">arrange</a></code>,
+<code><a href="as.data.frame.html">as.data.frame</a></code>,
+<code><a href="attach.html">attach,SparkDataFrame-method</a></code>,
+<code><a href="cache.html">cache</a></code>, <code><a 
href="checkpoint.html">checkpoint</a></code>,
+<code><a href="coalesce.html">coalesce</a></code>, <code><a 
href="collect.html">collect</a></code>,
+<code><a href="columns.html">colnames</a></code>, <code><a 
href="coltypes.html">coltypes</a></code>,
+<code><a 
href="createOrReplaceTempView.html">createOrReplaceTempView</a></code>,
+<code><a href="crossJoin.html">crossJoin</a></code>, <code><a 
href="dapplyCollect.html">dapplyCollect</a></code>,
+<code><a href="dapply.html">dapply</a></code>, <code><a 
href="summary.html">describe</a></code>,
+<code><a href="dim.html">dim</a></code>, <code><a 
href="distinct.html">distinct</a></code>,
+<code><a href="dropDuplicates.html">dropDuplicates</a></code>, <code><a 
href="nafunctions.html">dropna</a></code>,
+<code><a href="drop.html">drop</a></code>, <code><a 
href="dtypes.html">dtypes</a></code>,
+<code><a href="except.html">except</a></code>, <code><a 
href="explain.html">explain</a></code>,
+<code><a href="filter.html">filter</a></code>, <code><a 
href="first.html">first</a></code>,
+<code><a href="gapplyCollect.html">gapplyCollect</a></code>, <code><a 
href="gapply.html">gapply</a></code>,
+<code><a href="getNumPartitions.html">getNumPartitions</a></code>, <code><a 
href="groupBy.html">group_by</a></code>,
+<code><a href="head.html">head</a></code>, <code><a 
href="hint.html">hint</a></code>,
+<code><a href="histogram.html">histogram</a></code>, <code><a 
href="insertInto.html">insertInto</a></code>,
+<code><a href="intersect.html">intersect</a></code>, <code><a 
href="isLocal.html">isLocal</a></code>,
+<code><a href="isStreaming.html">isStreaming</a></code>, <code><a 
href="join.html">join</a></code>,
+<code><a href="limit.html">limit</a></code>, <code><a 
href="merge.html">merge</a></code>,
+<code><a href="mutate.html">mutate</a></code>, <code><a 
href="ncol.html">ncol</a></code>,
+<code><a href="nrow.html">nrow</a></code>, <code><a 
href="persist.html">persist</a></code>,
+<code><a href="printSchema.html">printSchema</a></code>, <code><a 
href="randomSplit.html">randomSplit</a></code>,
+<code><a href="rbind.html">rbind</a></code>, <code><a 
href="registerTempTable-deprecated.html">registerTempTable</a></code>,
+<code><a href="rename.html">rename</a></code>, <code><a 
href="repartition.html">repartition</a></code>,
+<code><a href="sample.html">sample</a></code>, <code><a 
href="saveAsTable.html">saveAsTable</a></code>,
+<code><a href="schema.html">schema</a></code>, <code><a 
href="selectExpr.html">selectExpr</a></code>,
+<code><a href="select.html">select</a></code>, <code><a 
href="showDF.html">showDF</a></code>,
+<code><a href="show.html">show</a></code>, <code><a 
href="storageLevel.html">storageLevel</a></code>,
+<code><a href="str.html">str</a></code>, <code><a 
href="take.html">take</a></code>,
+<code><a href="toJSON.html">toJSON</a></code>, <code><a 
href="union.html">union</a></code>,
+<code><a href="unpersist.html">unpersist</a></code>, <code><a 
href="withColumn.html">withColumn</a></code>,
+<code><a href="with.html">with</a></code>, <code><a 
href="write.df.html">write.df</a></code>,
+<code><a href="write.jdbc.html">write.jdbc</a></code>, <code><a 
href="write.json.html">write.json</a></code>,
+<code><a href="write.orc.html">write.orc</a></code>, <code><a 
href="write.parquet.html">write.parquet</a></code>,
+<code><a href="write.stream.html">write.stream</a></code>, <code><a 
href="write.text.html">write.text</a></code>
+</p>
+<p>Other subsetting functions: <code><a href="filter.html">filter</a></code>,
+<code><a href="select.html">select</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D   # Columns can be selected using [[ and [
+##D   df[[2]] == df[[&quot;age&quot;]]
+##D   df[,2] == df[,&quot;age&quot;]
+##D   df[,c(&quot;name&quot;, &quot;age&quot;)]
+##D   # Or to filter rows
+##D   df[df$age &gt; 20,]
+##D   # SparkDataFrame can be subset on both rows and Columns
+##D   df[df$name == &quot;Smith&quot;, c(1,2)]
+##D   df[df$age %in% c(19, 30), 1:2]
+##D   subset(df, df$age %in% c(19, 30), 1:2)
+##D   subset(df, df$age %in% c(19), select = c(1,2))
+##D   subset(df, select = c(1,2))
+##D   # Columns can be selected and set
+##D   df[[&quot;age&quot;]] &lt;- 23
+##D   df[[1]] &lt;- df$age
+##D   df[[2]] &lt;- NULL # drop column
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/substr.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/substr.html 
b/site/docs/2.2.2/api/R/substr.html
new file mode 100644
index 0000000..8bbced3
--- /dev/null
+++ b/site/docs/2.2.2/api/R/substr.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: substr</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+</head><body>
+
+<table width="100%" summary="page for substr {SparkR}"><tr><td>substr 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>substr</h2>
+
+<h3>Description</h3>
+
+<p>An expression that returns a substring.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+substr(x, start, stop)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a Column.</p>
+</td></tr>
+<tr valign="top"><td><code>start</code></td>
+<td>
+<p>starting position.</p>
+</td></tr>
+<tr valign="top"><td><code>stop</code></td>
+<td>
+<p>ending position.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>substr since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other colum_func: <code><a href="alias.html">alias</a></code>,
+<code><a href="between.html">between</a></code>, <code><a 
href="cast.html">cast</a></code>,
+<code><a href="endsWith.html">endsWith</a></code>, <code><a 
href="otherwise.html">otherwise</a></code>,
+<code><a href="over.html">over</a></code>, <code><a 
href="startsWith.html">startsWith</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/substring_index.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/substring_index.html 
b/site/docs/2.2.2/api/R/substring_index.html
new file mode 100644
index 0000000..8f510cb
--- /dev/null
+++ b/site/docs/2.2.2/api/R/substring_index.html
@@ -0,0 +1,89 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: substring_index</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for substring_index 
{SparkR}"><tr><td>substring_index {SparkR}</td><td style="text-align: right;">R 
Documentation</td></tr></table>
+
+<h2>substring_index</h2>
+
+<h3>Description</h3>
+
+<p>Returns the substring from string str before count occurrences of the 
delimiter delim.
+If count is positive, everything the left of the final delimiter (counting 
from left) is
+returned. If count is negative, every to the right of the final delimiter 
(counting from the
+right) is returned. substring_index performs a case-sensitive match when 
searching for delim.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+substring_index(x, delim, count)
+
+## S4 method for signature 'Column,character,numeric'
+substring_index(x, delim, count)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a Column.</p>
+</td></tr>
+<tr valign="top"><td><code>delim</code></td>
+<td>
+<p>a delimiter string.</p>
+</td></tr>
+<tr valign="top"><td><code>count</code></td>
+<td>
+<p>number of occurrences of <code>delim</code> before the substring is 
returned.
+A positive number means counting from the left, while negative means
+counting from the right.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>substring_index since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="base64.html">base64</a></code>, <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat.html">concat</a></code>, <code><a 
href="decode.html">decode</a></code>,
+<code><a href="encode.html">encode</a></code>, <code><a 
href="format_number.html">format_number</a></code>,
+<code><a href="format_string.html">format_string</a></code>, <code><a 
href="initcap.html">initcap</a></code>,
+<code><a href="instr.html">instr</a></code>, <code><a 
href="length.html">length</a></code>,
+<code><a href="levenshtein.html">levenshtein</a></code>, <code><a 
href="locate.html">locate</a></code>,
+<code><a href="lower.html">lower</a></code>, <code><a 
href="lpad.html">lpad</a></code>,
+<code><a href="ltrim.html">ltrim</a></code>, <code><a 
href="regexp_extract.html">regexp_extract</a></code>,
+<code><a href="regexp_replace.html">regexp_replace</a></code>, <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="rpad.html">rpad</a></code>, <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="soundex.html">soundex</a></code>, <code><a 
href="translate.html">translate</a></code>,
+<code><a href="trim.html">trim</a></code>, <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D substring_index(df$c, &#39;.&#39;, 2)
+##D substring_index(df$c, &#39;.&#39;, -1)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/sum.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/sum.html b/site/docs/2.2.2/api/R/sum.html
new file mode 100644
index 0000000..bafc4b3
--- /dev/null
+++ b/site/docs/2.2.2/api/R/sum.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: sum</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for sum {SparkR}"><tr><td>sum 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>sum</h2>
+
+<h3>Description</h3>
+
+<p>Aggregate function: returns the sum of all values in the expression.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+sum(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>sum since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other agg_funcs: <code><a href="summarize.html">agg</a></code>, <code><a 
href="avg.html">avg</a></code>,
+<code><a href="countDistinct.html">countDistinct</a></code>, <code><a 
href="count.html">count</a></code>,
+<code><a href="first.html">first</a></code>, <code><a 
href="kurtosis.html">kurtosis</a></code>,
+<code><a href="last.html">last</a></code>, <code><a 
href="max.html">max</a></code>,
+<code><a href="mean.html">mean</a></code>, <code><a 
href="min.html">min</a></code>, <code><a href="sd.html">sd</a></code>,
+<code><a href="skewness.html">skewness</a></code>, <code><a 
href="stddev_pop.html">stddev_pop</a></code>,
+<code><a href="stddev_samp.html">stddev_samp</a></code>, <code><a 
href="sumDistinct.html">sumDistinct</a></code>,
+<code><a href="var_pop.html">var_pop</a></code>, <code><a 
href="var_samp.html">var_samp</a></code>,
+<code><a href="var.html">var</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: sum(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/sumDistinct.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/sumDistinct.html 
b/site/docs/2.2.2/api/R/sumDistinct.html
new file mode 100644
index 0000000..20aff7d
--- /dev/null
+++ b/site/docs/2.2.2/api/R/sumDistinct.html
@@ -0,0 +1,68 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: sumDistinct</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for sumDistinct 
{SparkR}"><tr><td>sumDistinct {SparkR}</td><td style="text-align: right;">R 
Documentation</td></tr></table>
+
+<h2>sumDistinct</h2>
+
+<h3>Description</h3>
+
+<p>Aggregate function: returns the sum of distinct values in the expression.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+sumDistinct(x)
+
+## S4 method for signature 'Column'
+sumDistinct(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>sumDistinct since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other agg_funcs: <code><a href="summarize.html">agg</a></code>, <code><a 
href="avg.html">avg</a></code>,
+<code><a href="countDistinct.html">countDistinct</a></code>, <code><a 
href="count.html">count</a></code>,
+<code><a href="first.html">first</a></code>, <code><a 
href="kurtosis.html">kurtosis</a></code>,
+<code><a href="last.html">last</a></code>, <code><a 
href="max.html">max</a></code>,
+<code><a href="mean.html">mean</a></code>, <code><a 
href="min.html">min</a></code>, <code><a href="sd.html">sd</a></code>,
+<code><a href="skewness.html">skewness</a></code>, <code><a 
href="stddev_pop.html">stddev_pop</a></code>,
+<code><a href="stddev_samp.html">stddev_samp</a></code>, <code><a 
href="sum.html">sum</a></code>,
+<code><a href="var_pop.html">var_pop</a></code>, <code><a 
href="var_samp.html">var_samp</a></code>,
+<code><a href="var.html">var</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: sumDistinct(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/summarize.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/summarize.html 
b/site/docs/2.2.2/api/R/summarize.html
new file mode 100644
index 0000000..2e767fd
--- /dev/null
+++ b/site/docs/2.2.2/api/R/summarize.html
@@ -0,0 +1,148 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: summarize</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for agg {SparkR}"><tr><td>agg 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>summarize</h2>
+
+<h3>Description</h3>
+
+<p>Aggregates on the entire SparkDataFrame without groups.
+The resulting SparkDataFrame will also contain the grouping columns.
+</p>
+<p>Compute aggregates by specifying a list of columns
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+agg(x, ...)
+
+summarize(x, ...)
+
+## S4 method for signature 'GroupedData'
+agg(x, ...)
+
+## S4 method for signature 'GroupedData'
+summarize(x, ...)
+
+## S4 method for signature 'SparkDataFrame'
+agg(x, ...)
+
+## S4 method for signature 'SparkDataFrame'
+summarize(x, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a SparkDataFrame or GroupedData.</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>further arguments to be passed to or from other methods.</p>
+</td></tr>
+</table>
+
+
+<h3>Details</h3>
+
+<p>df2 &lt;- agg(df, &lt;column&gt; = &lt;aggFunction&gt;)
+df2 &lt;- agg(df, newColName = aggFunction(column))
+</p>
+
+
+<h3>Value</h3>
+
+<p>A SparkDataFrame.
+</p>
+
+
+<h3>Note</h3>
+
+<p>agg since 1.4.0
+</p>
+<p>summarize since 1.4.0
+</p>
+<p>agg since 1.4.0
+</p>
+<p>summarize since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other agg_funcs: <code><a href="avg.html">avg</a></code>,
+<code><a href="countDistinct.html">countDistinct</a></code>, <code><a 
href="count.html">count</a></code>,
+<code><a href="first.html">first</a></code>, <code><a 
href="kurtosis.html">kurtosis</a></code>,
+<code><a href="last.html">last</a></code>, <code><a 
href="max.html">max</a></code>,
+<code><a href="mean.html">mean</a></code>, <code><a 
href="min.html">min</a></code>, <code><a href="sd.html">sd</a></code>,
+<code><a href="skewness.html">skewness</a></code>, <code><a 
href="stddev_pop.html">stddev_pop</a></code>,
+<code><a href="stddev_samp.html">stddev_samp</a></code>, <code><a 
href="sumDistinct.html">sumDistinct</a></code>,
+<code><a href="sum.html">sum</a></code>, <code><a 
href="var_pop.html">var_pop</a></code>,
+<code><a href="var_samp.html">var_samp</a></code>, <code><a 
href="var.html">var</a></code>
+</p>
+<p>Other SparkDataFrame functions: <code><a 
href="SparkDataFrame.html">SparkDataFrame-class</a></code>,
+<code><a href="arrange.html">arrange</a></code>, <code><a 
href="as.data.frame.html">as.data.frame</a></code>,
+<code><a href="attach.html">attach,SparkDataFrame-method</a></code>,
+<code><a href="cache.html">cache</a></code>, <code><a 
href="checkpoint.html">checkpoint</a></code>,
+<code><a href="coalesce.html">coalesce</a></code>, <code><a 
href="collect.html">collect</a></code>,
+<code><a href="columns.html">colnames</a></code>, <code><a 
href="coltypes.html">coltypes</a></code>,
+<code><a 
href="createOrReplaceTempView.html">createOrReplaceTempView</a></code>,
+<code><a href="crossJoin.html">crossJoin</a></code>, <code><a 
href="dapplyCollect.html">dapplyCollect</a></code>,
+<code><a href="dapply.html">dapply</a></code>, <code><a 
href="summary.html">describe</a></code>,
+<code><a href="dim.html">dim</a></code>, <code><a 
href="distinct.html">distinct</a></code>,
+<code><a href="dropDuplicates.html">dropDuplicates</a></code>, <code><a 
href="nafunctions.html">dropna</a></code>,
+<code><a href="drop.html">drop</a></code>, <code><a 
href="dtypes.html">dtypes</a></code>,
+<code><a href="except.html">except</a></code>, <code><a 
href="explain.html">explain</a></code>,
+<code><a href="filter.html">filter</a></code>, <code><a 
href="first.html">first</a></code>,
+<code><a href="gapplyCollect.html">gapplyCollect</a></code>, <code><a 
href="gapply.html">gapply</a></code>,
+<code><a href="getNumPartitions.html">getNumPartitions</a></code>, <code><a 
href="groupBy.html">group_by</a></code>,
+<code><a href="head.html">head</a></code>, <code><a 
href="hint.html">hint</a></code>,
+<code><a href="histogram.html">histogram</a></code>, <code><a 
href="insertInto.html">insertInto</a></code>,
+<code><a href="intersect.html">intersect</a></code>, <code><a 
href="isLocal.html">isLocal</a></code>,
+<code><a href="isStreaming.html">isStreaming</a></code>, <code><a 
href="join.html">join</a></code>,
+<code><a href="limit.html">limit</a></code>, <code><a 
href="merge.html">merge</a></code>,
+<code><a href="mutate.html">mutate</a></code>, <code><a 
href="ncol.html">ncol</a></code>,
+<code><a href="nrow.html">nrow</a></code>, <code><a 
href="persist.html">persist</a></code>,
+<code><a href="printSchema.html">printSchema</a></code>, <code><a 
href="randomSplit.html">randomSplit</a></code>,
+<code><a href="rbind.html">rbind</a></code>, <code><a 
href="registerTempTable-deprecated.html">registerTempTable</a></code>,
+<code><a href="rename.html">rename</a></code>, <code><a 
href="repartition.html">repartition</a></code>,
+<code><a href="sample.html">sample</a></code>, <code><a 
href="saveAsTable.html">saveAsTable</a></code>,
+<code><a href="schema.html">schema</a></code>, <code><a 
href="selectExpr.html">selectExpr</a></code>,
+<code><a href="select.html">select</a></code>, <code><a 
href="showDF.html">showDF</a></code>,
+<code><a href="show.html">show</a></code>, <code><a 
href="storageLevel.html">storageLevel</a></code>,
+<code><a href="str.html">str</a></code>, <code><a 
href="subset.html">subset</a></code>,
+<code><a href="take.html">take</a></code>, <code><a 
href="toJSON.html">toJSON</a></code>,
+<code><a href="union.html">union</a></code>, <code><a 
href="unpersist.html">unpersist</a></code>,
+<code><a href="withColumn.html">withColumn</a></code>, <code><a 
href="with.html">with</a></code>,
+<code><a href="write.df.html">write.df</a></code>, <code><a 
href="write.jdbc.html">write.jdbc</a></code>,
+<code><a href="write.json.html">write.json</a></code>, <code><a 
href="write.orc.html">write.orc</a></code>,
+<code><a href="write.parquet.html">write.parquet</a></code>, <code><a 
href="write.stream.html">write.stream</a></code>,
+<code><a href="write.text.html">write.text</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D  df2 &lt;- agg(df, age = &quot;sum&quot;)  # new column name will be 
created as &#39;SUM(age#0)&#39;
+##D  df3 &lt;- agg(df, ageSum = sum(df$age)) # Creates a new column named 
ageSum
+##D  df4 &lt;- summarize(df, ageSum = max(df$age))
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/summary.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/summary.html 
b/site/docs/2.2.2/api/R/summary.html
new file mode 100644
index 0000000..be0c719
--- /dev/null
+++ b/site/docs/2.2.2/api/R/summary.html
@@ -0,0 +1,135 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: summary</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for describe {SparkR}"><tr><td>describe 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>summary</h2>
+
+<h3>Description</h3>
+
+<p>Computes statistics for numeric and string columns.
+If no columns are given, this function computes statistics for all numerical 
or string columns.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+describe(x, col, ...)
+
+summary(object, ...)
+
+## S4 method for signature 'SparkDataFrame,character'
+describe(x, col, ...)
+
+## S4 method for signature 'SparkDataFrame,ANY'
+describe(x)
+
+## S4 method for signature 'SparkDataFrame'
+summary(object, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a SparkDataFrame to be computed.</p>
+</td></tr>
+<tr valign="top"><td><code>col</code></td>
+<td>
+<p>a string of name.</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>additional expressions.</p>
+</td></tr>
+<tr valign="top"><td><code>object</code></td>
+<td>
+<p>a SparkDataFrame to be summarized.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A SparkDataFrame.
+</p>
+
+
+<h3>Note</h3>
+
+<p>describe(SparkDataFrame, character) since 1.4.0
+</p>
+<p>describe(SparkDataFrame) since 1.4.0
+</p>
+<p>summary(SparkDataFrame) since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other SparkDataFrame functions: <code><a 
href="SparkDataFrame.html">SparkDataFrame-class</a></code>,
+<code><a href="summarize.html">agg</a></code>, <code><a 
href="arrange.html">arrange</a></code>,
+<code><a href="as.data.frame.html">as.data.frame</a></code>,
+<code><a href="attach.html">attach,SparkDataFrame-method</a></code>,
+<code><a href="cache.html">cache</a></code>, <code><a 
href="checkpoint.html">checkpoint</a></code>,
+<code><a href="coalesce.html">coalesce</a></code>, <code><a 
href="collect.html">collect</a></code>,
+<code><a href="columns.html">colnames</a></code>, <code><a 
href="coltypes.html">coltypes</a></code>,
+<code><a 
href="createOrReplaceTempView.html">createOrReplaceTempView</a></code>,
+<code><a href="crossJoin.html">crossJoin</a></code>, <code><a 
href="dapplyCollect.html">dapplyCollect</a></code>,
+<code><a href="dapply.html">dapply</a></code>, <code><a 
href="dim.html">dim</a></code>,
+<code><a href="distinct.html">distinct</a></code>, <code><a 
href="dropDuplicates.html">dropDuplicates</a></code>,
+<code><a href="nafunctions.html">dropna</a></code>, <code><a 
href="drop.html">drop</a></code>,
+<code><a href="dtypes.html">dtypes</a></code>, <code><a 
href="except.html">except</a></code>,
+<code><a href="explain.html">explain</a></code>, <code><a 
href="filter.html">filter</a></code>,
+<code><a href="first.html">first</a></code>, <code><a 
href="gapplyCollect.html">gapplyCollect</a></code>,
+<code><a href="gapply.html">gapply</a></code>, <code><a 
href="getNumPartitions.html">getNumPartitions</a></code>,
+<code><a href="groupBy.html">group_by</a></code>, <code><a 
href="head.html">head</a></code>,
+<code><a href="hint.html">hint</a></code>, <code><a 
href="histogram.html">histogram</a></code>,
+<code><a href="insertInto.html">insertInto</a></code>, <code><a 
href="intersect.html">intersect</a></code>,
+<code><a href="isLocal.html">isLocal</a></code>, <code><a 
href="isStreaming.html">isStreaming</a></code>,
+<code><a href="join.html">join</a></code>, <code><a 
href="limit.html">limit</a></code>,
+<code><a href="merge.html">merge</a></code>, <code><a 
href="mutate.html">mutate</a></code>,
+<code><a href="ncol.html">ncol</a></code>, <code><a 
href="nrow.html">nrow</a></code>,
+<code><a href="persist.html">persist</a></code>, <code><a 
href="printSchema.html">printSchema</a></code>,
+<code><a href="randomSplit.html">randomSplit</a></code>, <code><a 
href="rbind.html">rbind</a></code>,
+<code><a 
href="registerTempTable-deprecated.html">registerTempTable</a></code>, <code><a 
href="rename.html">rename</a></code>,
+<code><a href="repartition.html">repartition</a></code>, <code><a 
href="sample.html">sample</a></code>,
+<code><a href="saveAsTable.html">saveAsTable</a></code>, <code><a 
href="schema.html">schema</a></code>,
+<code><a href="selectExpr.html">selectExpr</a></code>, <code><a 
href="select.html">select</a></code>,
+<code><a href="showDF.html">showDF</a></code>, <code><a 
href="show.html">show</a></code>,
+<code><a href="storageLevel.html">storageLevel</a></code>, <code><a 
href="str.html">str</a></code>,
+<code><a href="subset.html">subset</a></code>, <code><a 
href="take.html">take</a></code>,
+<code><a href="toJSON.html">toJSON</a></code>, <code><a 
href="union.html">union</a></code>,
+<code><a href="unpersist.html">unpersist</a></code>, <code><a 
href="withColumn.html">withColumn</a></code>,
+<code><a href="with.html">with</a></code>, <code><a 
href="write.df.html">write.df</a></code>,
+<code><a href="write.jdbc.html">write.jdbc</a></code>, <code><a 
href="write.json.html">write.json</a></code>,
+<code><a href="write.orc.html">write.orc</a></code>, <code><a 
href="write.parquet.html">write.parquet</a></code>,
+<code><a href="write.stream.html">write.stream</a></code>, <code><a 
href="write.text.html">write.text</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- read.json(path)
+##D describe(df)
+##D describe(df, &quot;col1&quot;)
+##D describe(df, &quot;col1&quot;, &quot;col2&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/tableNames.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/tableNames.html 
b/site/docs/2.2.2/api/R/tableNames.html
new file mode 100644
index 0000000..0e19fd6
--- /dev/null
+++ b/site/docs/2.2.2/api/R/tableNames.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: Table Names</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for tableNames {SparkR}"><tr><td>tableNames 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Table Names</h2>
+
+<h3>Description</h3>
+
+<p>Returns the names of tables in the given database as an array.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## Default S3 method:
+tableNames(databaseName = NULL)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>databaseName</code></td>
+<td>
+<p>(optional) name of the database</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>a list of table names
+</p>
+
+
+<h3>Note</h3>
+
+<p>tableNames since 1.4.0
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D tableNames(&quot;hive&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/tableToDF.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/tableToDF.html 
b/site/docs/2.2.2/api/R/tableToDF.html
new file mode 100644
index 0000000..0f05561
--- /dev/null
+++ b/site/docs/2.2.2/api/R/tableToDF.html
@@ -0,0 +1,67 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: Create a SparkDataFrame 
from a SparkSQL table or view</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for tableToDF {SparkR}"><tr><td>tableToDF 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Create a SparkDataFrame from a SparkSQL table or view</h2>
+
+<h3>Description</h3>
+
+<p>Returns the specified table or view as a SparkDataFrame. The table or view 
must already exist or
+have already been registered in the SparkSession.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+tableToDF(tableName)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>tableName</code></td>
+<td>
+<p>the qualified or unqualified name that designates a table or view. If a 
database
+is specified, it identifies the table/view from the database.
+Otherwise, it first attempts to find a temporary view with the given name
+and then match the table/view from the current database.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>SparkDataFrame
+</p>
+
+
+<h3>Note</h3>
+
+<p>tableToDF since 2.0.0
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- read.json(path)
+##D createOrReplaceTempView(df, &quot;table&quot;)
+##D new_df &lt;- tableToDF(&quot;table&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/tables.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/tables.html 
b/site/docs/2.2.2/api/R/tables.html
new file mode 100644
index 0000000..708210b
--- /dev/null
+++ b/site/docs/2.2.2/api/R/tables.html
@@ -0,0 +1,67 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: Tables</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for tables {SparkR}"><tr><td>tables 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Tables</h2>
+
+<h3>Description</h3>
+
+<p>Returns a SparkDataFrame containing names of tables in the given database.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## Default S3 method:
+tables(databaseName = NULL)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>databaseName</code></td>
+<td>
+<p>(optional) name of the database</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>a SparkDataFrame
+</p>
+
+
+<h3>Note</h3>
+
+<p>tables since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p><a href="listTables.html">listTables</a>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D tables(&quot;hive&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/take.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/take.html b/site/docs/2.2.2/api/R/take.html
new file mode 100644
index 0000000..3a5474b
--- /dev/null
+++ b/site/docs/2.2.2/api/R/take.html
@@ -0,0 +1,106 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: Take the first NUM rows of 
a SparkDataFrame and return the...</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for take {SparkR}"><tr><td>take 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Take the first NUM rows of a SparkDataFrame and return the results as a R 
data.frame</h2>
+
+<h3>Description</h3>
+
+<p>Take the first NUM rows of a SparkDataFrame and return the results as a R 
data.frame
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+take(x, num)
+
+## S4 method for signature 'SparkDataFrame,numeric'
+take(x, num)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a SparkDataFrame.</p>
+</td></tr>
+<tr valign="top"><td><code>num</code></td>
+<td>
+<p>number of rows to take.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>take since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other SparkDataFrame functions: <code><a 
href="SparkDataFrame.html">SparkDataFrame-class</a></code>,
+<code><a href="summarize.html">agg</a></code>, <code><a 
href="arrange.html">arrange</a></code>,
+<code><a href="as.data.frame.html">as.data.frame</a></code>,
+<code><a href="attach.html">attach,SparkDataFrame-method</a></code>,
+<code><a href="cache.html">cache</a></code>, <code><a 
href="checkpoint.html">checkpoint</a></code>,
+<code><a href="coalesce.html">coalesce</a></code>, <code><a 
href="collect.html">collect</a></code>,
+<code><a href="columns.html">colnames</a></code>, <code><a 
href="coltypes.html">coltypes</a></code>,
+<code><a 
href="createOrReplaceTempView.html">createOrReplaceTempView</a></code>,
+<code><a href="crossJoin.html">crossJoin</a></code>, <code><a 
href="dapplyCollect.html">dapplyCollect</a></code>,
+<code><a href="dapply.html">dapply</a></code>, <code><a 
href="summary.html">describe</a></code>,
+<code><a href="dim.html">dim</a></code>, <code><a 
href="distinct.html">distinct</a></code>,
+<code><a href="dropDuplicates.html">dropDuplicates</a></code>, <code><a 
href="nafunctions.html">dropna</a></code>,
+<code><a href="drop.html">drop</a></code>, <code><a 
href="dtypes.html">dtypes</a></code>,
+<code><a href="except.html">except</a></code>, <code><a 
href="explain.html">explain</a></code>,
+<code><a href="filter.html">filter</a></code>, <code><a 
href="first.html">first</a></code>,
+<code><a href="gapplyCollect.html">gapplyCollect</a></code>, <code><a 
href="gapply.html">gapply</a></code>,
+<code><a href="getNumPartitions.html">getNumPartitions</a></code>, <code><a 
href="groupBy.html">group_by</a></code>,
+<code><a href="head.html">head</a></code>, <code><a 
href="hint.html">hint</a></code>,
+<code><a href="histogram.html">histogram</a></code>, <code><a 
href="insertInto.html">insertInto</a></code>,
+<code><a href="intersect.html">intersect</a></code>, <code><a 
href="isLocal.html">isLocal</a></code>,
+<code><a href="isStreaming.html">isStreaming</a></code>, <code><a 
href="join.html">join</a></code>,
+<code><a href="limit.html">limit</a></code>, <code><a 
href="merge.html">merge</a></code>,
+<code><a href="mutate.html">mutate</a></code>, <code><a 
href="ncol.html">ncol</a></code>,
+<code><a href="nrow.html">nrow</a></code>, <code><a 
href="persist.html">persist</a></code>,
+<code><a href="printSchema.html">printSchema</a></code>, <code><a 
href="randomSplit.html">randomSplit</a></code>,
+<code><a href="rbind.html">rbind</a></code>, <code><a 
href="registerTempTable-deprecated.html">registerTempTable</a></code>,
+<code><a href="rename.html">rename</a></code>, <code><a 
href="repartition.html">repartition</a></code>,
+<code><a href="sample.html">sample</a></code>, <code><a 
href="saveAsTable.html">saveAsTable</a></code>,
+<code><a href="schema.html">schema</a></code>, <code><a 
href="selectExpr.html">selectExpr</a></code>,
+<code><a href="select.html">select</a></code>, <code><a 
href="showDF.html">showDF</a></code>,
+<code><a href="show.html">show</a></code>, <code><a 
href="storageLevel.html">storageLevel</a></code>,
+<code><a href="str.html">str</a></code>, <code><a 
href="subset.html">subset</a></code>,
+<code><a href="toJSON.html">toJSON</a></code>, <code><a 
href="union.html">union</a></code>,
+<code><a href="unpersist.html">unpersist</a></code>, <code><a 
href="withColumn.html">withColumn</a></code>,
+<code><a href="with.html">with</a></code>, <code><a 
href="write.df.html">write.df</a></code>,
+<code><a href="write.jdbc.html">write.jdbc</a></code>, <code><a 
href="write.json.html">write.json</a></code>,
+<code><a href="write.orc.html">write.orc</a></code>, <code><a 
href="write.parquet.html">write.parquet</a></code>,
+<code><a href="write.stream.html">write.stream</a></code>, <code><a 
href="write.text.html">write.text</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- read.json(path)
+##D take(df, 2)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/tan.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/tan.html b/site/docs/2.2.2/api/R/tan.html
new file mode 100644
index 0000000..eb0fe28
--- /dev/null
+++ b/site/docs/2.2.2/api/R/tan.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: tan</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for tan {SparkR}"><tr><td>tan 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>tan</h2>
+
+<h3>Description</h3>
+
+<p>Computes the tangent of the given value.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+tan(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>tan since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other math_funcs: <code><a href="acos.html">acos</a></code>, <code><a 
href="asin.html">asin</a></code>,
+<code><a href="atan2.html">atan2</a></code>, <code><a 
href="atan.html">atan</a></code>,
+<code><a href="bin.html">bin</a></code>, <code><a 
href="bround.html">bround</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>, <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="conv.html">conv</a></code>, <code><a 
href="corr.html">corr</a></code>,
+<code><a href="cosh.html">cosh</a></code>, <code><a 
href="cos.html">cos</a></code>,
+<code><a href="covar_pop.html">covar_pop</a></code>, <code><a 
href="cov.html">cov</a></code>,
+<code><a href="expm1.html">expm1</a></code>, <code><a 
href="exp.html">exp</a></code>,
+<code><a href="factorial.html">factorial</a></code>, <code><a 
href="floor.html">floor</a></code>,
+<code><a href="hex.html">hex</a></code>, <code><a 
href="hypot.html">hypot</a></code>,
+<code><a href="log10.html">log10</a></code>, <code><a 
href="log1p.html">log1p</a></code>,
+<code><a href="log2.html">log2</a></code>, <code><a 
href="log.html">log</a></code>,
+<code><a href="pmod.html">pmod</a></code>, <code><a 
href="rint.html">rint</a></code>,
+<code><a href="round.html">round</a></code>, <code><a 
href="shiftLeft.html">shiftLeft</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="sign.html">signum</a></code>,
+<code><a href="sinh.html">sinh</a></code>, <code><a 
href="sin.html">sin</a></code>,
+<code><a href="sqrt.html">sqrt</a></code>, <code><a 
href="tanh.html">tanh</a></code>,
+<code><a href="toDegrees.html">toDegrees</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>,
+<code><a href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: tan(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/tanh.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/tanh.html b/site/docs/2.2.2/api/R/tanh.html
new file mode 100644
index 0000000..543cf40
--- /dev/null
+++ b/site/docs/2.2.2/api/R/tanh.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: tanh</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for tanh {SparkR}"><tr><td>tanh 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>tanh</h2>
+
+<h3>Description</h3>
+
+<p>Computes the hyperbolic tangent of the given value.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+tanh(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>tanh since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other math_funcs: <code><a href="acos.html">acos</a></code>, <code><a 
href="asin.html">asin</a></code>,
+<code><a href="atan2.html">atan2</a></code>, <code><a 
href="atan.html">atan</a></code>,
+<code><a href="bin.html">bin</a></code>, <code><a 
href="bround.html">bround</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>, <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="conv.html">conv</a></code>, <code><a 
href="corr.html">corr</a></code>,
+<code><a href="cosh.html">cosh</a></code>, <code><a 
href="cos.html">cos</a></code>,
+<code><a href="covar_pop.html">covar_pop</a></code>, <code><a 
href="cov.html">cov</a></code>,
+<code><a href="expm1.html">expm1</a></code>, <code><a 
href="exp.html">exp</a></code>,
+<code><a href="factorial.html">factorial</a></code>, <code><a 
href="floor.html">floor</a></code>,
+<code><a href="hex.html">hex</a></code>, <code><a 
href="hypot.html">hypot</a></code>,
+<code><a href="log10.html">log10</a></code>, <code><a 
href="log1p.html">log1p</a></code>,
+<code><a href="log2.html">log2</a></code>, <code><a 
href="log.html">log</a></code>,
+<code><a href="pmod.html">pmod</a></code>, <code><a 
href="rint.html">rint</a></code>,
+<code><a href="round.html">round</a></code>, <code><a 
href="shiftLeft.html">shiftLeft</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="sign.html">signum</a></code>,
+<code><a href="sinh.html">sinh</a></code>, <code><a 
href="sin.html">sin</a></code>,
+<code><a href="sqrt.html">sqrt</a></code>, <code><a 
href="tan.html">tan</a></code>,
+<code><a href="toDegrees.html">toDegrees</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>,
+<code><a href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: tanh(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/toDegrees.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/toDegrees.html 
b/site/docs/2.2.2/api/R/toDegrees.html
new file mode 100644
index 0000000..66f49aa
--- /dev/null
+++ b/site/docs/2.2.2/api/R/toDegrees.html
@@ -0,0 +1,79 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: toDegrees</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for toDegrees {SparkR}"><tr><td>toDegrees 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>toDegrees</h2>
+
+<h3>Description</h3>
+
+<p>Converts an angle measured in radians to an approximately equivalent angle 
measured in degrees.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+toDegrees(x)
+
+## S4 method for signature 'Column'
+toDegrees(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>toDegrees since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other math_funcs: <code><a href="acos.html">acos</a></code>, <code><a 
href="asin.html">asin</a></code>,
+<code><a href="atan2.html">atan2</a></code>, <code><a 
href="atan.html">atan</a></code>,
+<code><a href="bin.html">bin</a></code>, <code><a 
href="bround.html">bround</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>, <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="conv.html">conv</a></code>, <code><a 
href="corr.html">corr</a></code>,
+<code><a href="cosh.html">cosh</a></code>, <code><a 
href="cos.html">cos</a></code>,
+<code><a href="covar_pop.html">covar_pop</a></code>, <code><a 
href="cov.html">cov</a></code>,
+<code><a href="expm1.html">expm1</a></code>, <code><a 
href="exp.html">exp</a></code>,
+<code><a href="factorial.html">factorial</a></code>, <code><a 
href="floor.html">floor</a></code>,
+<code><a href="hex.html">hex</a></code>, <code><a 
href="hypot.html">hypot</a></code>,
+<code><a href="log10.html">log10</a></code>, <code><a 
href="log1p.html">log1p</a></code>,
+<code><a href="log2.html">log2</a></code>, <code><a 
href="log.html">log</a></code>,
+<code><a href="pmod.html">pmod</a></code>, <code><a 
href="rint.html">rint</a></code>,
+<code><a href="round.html">round</a></code>, <code><a 
href="shiftLeft.html">shiftLeft</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="sign.html">signum</a></code>,
+<code><a href="sinh.html">sinh</a></code>, <code><a 
href="sin.html">sin</a></code>,
+<code><a href="sqrt.html">sqrt</a></code>, <code><a 
href="tanh.html">tanh</a></code>,
+<code><a href="tan.html">tan</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>,
+<code><a href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: toDegrees(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/toJSON.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/toJSON.html 
b/site/docs/2.2.2/api/R/toJSON.html
new file mode 100644
index 0000000..19618fb
--- /dev/null
+++ b/site/docs/2.2.2/api/R/toJSON.html
@@ -0,0 +1,113 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: toJSON</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for toJSON {SparkR}"><tr><td>toJSON 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>toJSON</h2>
+
+<h3>Description</h3>
+
+<p>Converts a SparkDataFrame into a SparkDataFrame of JSON string.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'SparkDataFrame'
+toJSON(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a SparkDataFrame</p>
+</td></tr>
+</table>
+
+
+<h3>Details</h3>
+
+<p>Each row is turned into a JSON document with columns as different fields.
+The returned SparkDataFrame has a single character column with the name 
<code>value</code>
+</p>
+
+
+<h3>Value</h3>
+
+<p>a SparkDataFrame
+</p>
+
+
+<h3>Note</h3>
+
+<p>toJSON since 2.2.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other SparkDataFrame functions: <code><a 
href="SparkDataFrame.html">SparkDataFrame-class</a></code>,
+<code><a href="summarize.html">agg</a></code>, <code><a 
href="arrange.html">arrange</a></code>,
+<code><a href="as.data.frame.html">as.data.frame</a></code>,
+<code><a href="attach.html">attach,SparkDataFrame-method</a></code>,
+<code><a href="cache.html">cache</a></code>, <code><a 
href="checkpoint.html">checkpoint</a></code>,
+<code><a href="coalesce.html">coalesce</a></code>, <code><a 
href="collect.html">collect</a></code>,
+<code><a href="columns.html">colnames</a></code>, <code><a 
href="coltypes.html">coltypes</a></code>,
+<code><a 
href="createOrReplaceTempView.html">createOrReplaceTempView</a></code>,
+<code><a href="crossJoin.html">crossJoin</a></code>, <code><a 
href="dapplyCollect.html">dapplyCollect</a></code>,
+<code><a href="dapply.html">dapply</a></code>, <code><a 
href="summary.html">describe</a></code>,
+<code><a href="dim.html">dim</a></code>, <code><a 
href="distinct.html">distinct</a></code>,
+<code><a href="dropDuplicates.html">dropDuplicates</a></code>, <code><a 
href="nafunctions.html">dropna</a></code>,
+<code><a href="drop.html">drop</a></code>, <code><a 
href="dtypes.html">dtypes</a></code>,
+<code><a href="except.html">except</a></code>, <code><a 
href="explain.html">explain</a></code>,
+<code><a href="filter.html">filter</a></code>, <code><a 
href="first.html">first</a></code>,
+<code><a href="gapplyCollect.html">gapplyCollect</a></code>, <code><a 
href="gapply.html">gapply</a></code>,
+<code><a href="getNumPartitions.html">getNumPartitions</a></code>, <code><a 
href="groupBy.html">group_by</a></code>,
+<code><a href="head.html">head</a></code>, <code><a 
href="hint.html">hint</a></code>,
+<code><a href="histogram.html">histogram</a></code>, <code><a 
href="insertInto.html">insertInto</a></code>,
+<code><a href="intersect.html">intersect</a></code>, <code><a 
href="isLocal.html">isLocal</a></code>,
+<code><a href="isStreaming.html">isStreaming</a></code>, <code><a 
href="join.html">join</a></code>,
+<code><a href="limit.html">limit</a></code>, <code><a 
href="merge.html">merge</a></code>,
+<code><a href="mutate.html">mutate</a></code>, <code><a 
href="ncol.html">ncol</a></code>,
+<code><a href="nrow.html">nrow</a></code>, <code><a 
href="persist.html">persist</a></code>,
+<code><a href="printSchema.html">printSchema</a></code>, <code><a 
href="randomSplit.html">randomSplit</a></code>,
+<code><a href="rbind.html">rbind</a></code>, <code><a 
href="registerTempTable-deprecated.html">registerTempTable</a></code>,
+<code><a href="rename.html">rename</a></code>, <code><a 
href="repartition.html">repartition</a></code>,
+<code><a href="sample.html">sample</a></code>, <code><a 
href="saveAsTable.html">saveAsTable</a></code>,
+<code><a href="schema.html">schema</a></code>, <code><a 
href="selectExpr.html">selectExpr</a></code>,
+<code><a href="select.html">select</a></code>, <code><a 
href="showDF.html">showDF</a></code>,
+<code><a href="show.html">show</a></code>, <code><a 
href="storageLevel.html">storageLevel</a></code>,
+<code><a href="str.html">str</a></code>, <code><a 
href="subset.html">subset</a></code>,
+<code><a href="take.html">take</a></code>, <code><a 
href="union.html">union</a></code>,
+<code><a href="unpersist.html">unpersist</a></code>, <code><a 
href="withColumn.html">withColumn</a></code>,
+<code><a href="with.html">with</a></code>, <code><a 
href="write.df.html">write.df</a></code>,
+<code><a href="write.jdbc.html">write.jdbc</a></code>, <code><a 
href="write.json.html">write.json</a></code>,
+<code><a href="write.orc.html">write.orc</a></code>, <code><a 
href="write.parquet.html">write.parquet</a></code>,
+<code><a href="write.stream.html">write.stream</a></code>, <code><a 
href="write.text.html">write.text</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sparkR.session()
+##D path &lt;- &quot;path/to/file.parquet&quot;
+##D df &lt;- read.parquet(path)
+##D df_json &lt;- toJSON(df)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/toRadians.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/toRadians.html 
b/site/docs/2.2.2/api/R/toRadians.html
new file mode 100644
index 0000000..6c8eb10
--- /dev/null
+++ b/site/docs/2.2.2/api/R/toRadians.html
@@ -0,0 +1,79 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: toRadians</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for toRadians {SparkR}"><tr><td>toRadians 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>toRadians</h2>
+
+<h3>Description</h3>
+
+<p>Converts an angle measured in degrees to an approximately equivalent angle 
measured in radians.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+toRadians(x)
+
+## S4 method for signature 'Column'
+toRadians(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to compute on.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>toRadians since 1.4.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other math_funcs: <code><a href="acos.html">acos</a></code>, <code><a 
href="asin.html">asin</a></code>,
+<code><a href="atan2.html">atan2</a></code>, <code><a 
href="atan.html">atan</a></code>,
+<code><a href="bin.html">bin</a></code>, <code><a 
href="bround.html">bround</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>, <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="conv.html">conv</a></code>, <code><a 
href="corr.html">corr</a></code>,
+<code><a href="cosh.html">cosh</a></code>, <code><a 
href="cos.html">cos</a></code>,
+<code><a href="covar_pop.html">covar_pop</a></code>, <code><a 
href="cov.html">cov</a></code>,
+<code><a href="expm1.html">expm1</a></code>, <code><a 
href="exp.html">exp</a></code>,
+<code><a href="factorial.html">factorial</a></code>, <code><a 
href="floor.html">floor</a></code>,
+<code><a href="hex.html">hex</a></code>, <code><a 
href="hypot.html">hypot</a></code>,
+<code><a href="log10.html">log10</a></code>, <code><a 
href="log1p.html">log1p</a></code>,
+<code><a href="log2.html">log2</a></code>, <code><a 
href="log.html">log</a></code>,
+<code><a href="pmod.html">pmod</a></code>, <code><a 
href="rint.html">rint</a></code>,
+<code><a href="round.html">round</a></code>, <code><a 
href="shiftLeft.html">shiftLeft</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="sign.html">signum</a></code>,
+<code><a href="sinh.html">sinh</a></code>, <code><a 
href="sin.html">sin</a></code>,
+<code><a href="sqrt.html">sqrt</a></code>, <code><a 
href="tanh.html">tanh</a></code>,
+<code><a href="tan.html">tan</a></code>, <code><a 
href="toDegrees.html">toDegrees</a></code>,
+<code><a href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: toRadians(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/to_date.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/to_date.html 
b/site/docs/2.2.2/api/R/to_date.html
new file mode 100644
index 0000000..997673a
--- /dev/null
+++ b/site/docs/2.2.2/api/R/to_date.html
@@ -0,0 +1,103 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: to_date</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for to_date {SparkR}"><tr><td>to_date 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>to_date</h2>
+
+<h3>Description</h3>
+
+<p>Converts the column into a DateType. You may optionally specify a format
+according to the rules in:
+<a 
href="http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html";>http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html</a>.
+If the string cannot be parsed according to the specified format (or default),
+the value of the column will be null.
+The default format is 'yyyy-MM-dd'.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+to_date(x, format)
+
+## S4 method for signature 'Column,missing'
+to_date(x, format)
+
+## S4 method for signature 'Column,character'
+to_date(x, format)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to parse.</p>
+</td></tr>
+<tr valign="top"><td><code>format</code></td>
+<td>
+<p>string to use to parse x Column to DateType. (optional)</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>to_date(Column) since 1.5.0
+</p>
+<p>to_date(Column, character) since 2.2.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="date_add.html">date_add</a></code>, <code><a 
href="date_format.html">date_format</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>, <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="from_unixtime.html">from_unixtime</a></code>,
+<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>, 
<code><a href="hour.html">hour</a></code>,
+<code><a href="last_day.html">last_day</a></code>, <code><a 
href="minute.html">minute</a></code>,
+<code><a href="months_between.html">months_between</a></code>, <code><a 
href="month.html">month</a></code>,
+<code><a href="next_day.html">next_day</a></code>, <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="second.html">second</a></code>, <code><a 
href="to_timestamp.html">to_timestamp</a></code>,
+<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>, <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="window.html">window</a></code>, <code><a 
href="year.html">year</a></code>
+</p>
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="date_add.html">date_add</a></code>, <code><a 
href="date_format.html">date_format</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>, <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="from_unixtime.html">from_unixtime</a></code>,
+<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>, 
<code><a href="hour.html">hour</a></code>,
+<code><a href="last_day.html">last_day</a></code>, <code><a 
href="minute.html">minute</a></code>,
+<code><a href="months_between.html">months_between</a></code>, <code><a 
href="month.html">month</a></code>,
+<code><a href="next_day.html">next_day</a></code>, <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="second.html">second</a></code>, <code><a 
href="to_timestamp.html">to_timestamp</a></code>,
+<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>, <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="window.html">window</a></code>, <code><a 
href="year.html">year</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D to_date(df$c)
+##D to_date(df$c, &#39;yyyy-MM-dd&#39;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/to_json.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/to_json.html 
b/site/docs/2.2.2/api/R/to_json.html
new file mode 100644
index 0000000..b50b1e3
--- /dev/null
+++ b/site/docs/2.2.2/api/R/to_json.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: to_json</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for to_json {SparkR}"><tr><td>to_json 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>to_json</h2>
+
+<h3>Description</h3>
+
+<p>Converts a column containing a <code>structType</code> or array of 
<code>structType</code> into a Column
+of JSON string. Resolving the Column can fail if an unsupported type is 
encountered.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+to_json(x, ...)
+
+## S4 method for signature 'Column'
+to_json(x, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column containing the struct or array of the structs</p>
+</td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+<p>additional named properties to control how it is converted, accepts the 
same options
+as the JSON data source.</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>to_json since 2.2.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other normal_funcs: <code><a href="abs.html">abs</a></code>,
+<code><a href="bitwiseNOT.html">bitwiseNOT</a></code>, <code><a 
href="coalesce.html">coalesce</a></code>,
+<code><a href="column.html">column</a></code>, <code><a 
href="expr.html">expr</a></code>,
+<code><a href="from_json.html">from_json</a></code>, <code><a 
href="greatest.html">greatest</a></code>,
+<code><a href="ifelse.html">ifelse</a></code>, <code><a 
href="is.nan.html">isnan</a></code>,
+<code><a href="least.html">least</a></code>, <code><a 
href="lit.html">lit</a></code>,
+<code><a href="nanvl.html">nanvl</a></code>, <code><a 
href="negate.html">negate</a></code>,
+<code><a href="randn.html">randn</a></code>, <code><a 
href="rand.html">rand</a></code>,
+<code><a href="struct.html">struct</a></code>, <code><a 
href="when.html">when</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D # Converts a struct into a JSON object
+##D df &lt;- sql(&quot;SELECT named_struct(&#39;date&#39;, 
cast(&#39;2000-01-01&#39; as date)) as d&quot;)
+##D select(df, to_json(df$d, dateFormat = &#39;dd/MM/yyyy&#39;))
+##D 
+##D # Converts an array of structs into a JSON array
+##D df &lt;- sql(&quot;SELECT array(named_struct(&#39;name&#39;, 
&#39;Bob&#39;), named_struct(&#39;name&#39;, &#39;Alice&#39;)) as people&quot;)
+##D select(df, to_json(df$people))
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/to_timestamp.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/to_timestamp.html 
b/site/docs/2.2.2/api/R/to_timestamp.html
new file mode 100644
index 0000000..e3009c2
--- /dev/null
+++ b/site/docs/2.2.2/api/R/to_timestamp.html
@@ -0,0 +1,103 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: to_timestamp</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for to_timestamp 
{SparkR}"><tr><td>to_timestamp {SparkR}</td><td style="text-align: right;">R 
Documentation</td></tr></table>
+
+<h2>to_timestamp</h2>
+
+<h3>Description</h3>
+
+<p>Converts the column into a TimestampType. You may optionally specify a 
format
+according to the rules in:
+<a 
href="http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html";>http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html</a>.
+If the string cannot be parsed according to the specified format (or default),
+the value of the column will be null.
+The default format is 'yyyy-MM-dd HH:mm:ss'.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+to_timestamp(x, format)
+
+## S4 method for signature 'Column,missing'
+to_timestamp(x, format)
+
+## S4 method for signature 'Column,character'
+to_timestamp(x, format)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>Column to parse.</p>
+</td></tr>
+<tr valign="top"><td><code>format</code></td>
+<td>
+<p>string to use to parse x Column to DateType. (optional)</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>to_timestamp(Column) since 2.2.0
+</p>
+<p>to_timestamp(Column, character) since 2.2.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="date_add.html">date_add</a></code>, <code><a 
href="date_format.html">date_format</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>, <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="from_unixtime.html">from_unixtime</a></code>,
+<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>, 
<code><a href="hour.html">hour</a></code>,
+<code><a href="last_day.html">last_day</a></code>, <code><a 
href="minute.html">minute</a></code>,
+<code><a href="months_between.html">months_between</a></code>, <code><a 
href="month.html">month</a></code>,
+<code><a href="next_day.html">next_day</a></code>, <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="second.html">second</a></code>, <code><a 
href="to_date.html">to_date</a></code>,
+<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>, <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="window.html">window</a></code>, <code><a 
href="year.html">year</a></code>
+</p>
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="date_add.html">date_add</a></code>, <code><a 
href="date_format.html">date_format</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>, <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="from_unixtime.html">from_unixtime</a></code>,
+<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>, 
<code><a href="hour.html">hour</a></code>,
+<code><a href="last_day.html">last_day</a></code>, <code><a 
href="minute.html">minute</a></code>,
+<code><a href="months_between.html">months_between</a></code>, <code><a 
href="month.html">month</a></code>,
+<code><a href="next_day.html">next_day</a></code>, <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="second.html">second</a></code>, <code><a 
href="to_date.html">to_date</a></code>,
+<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>, <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="window.html">window</a></code>, <code><a 
href="year.html">year</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D to_timestamp(df$c)
+##D to_timestamp(df$c, &#39;yyyy-MM-dd&#39;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>

http://git-wip-us.apache.org/repos/asf/spark-website/blob/e1001463/site/docs/2.2.2/api/R/to_utc_timestamp.html
----------------------------------------------------------------------
diff --git a/site/docs/2.2.2/api/R/to_utc_timestamp.html 
b/site/docs/2.2.2/api/R/to_utc_timestamp.html
new file mode 100644
index 0000000..47ca420
--- /dev/null
+++ b/site/docs/2.2.2/api/R/to_utc_timestamp.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";><html 
xmlns="http://www.w3.org/1999/xhtml";><head><title>R: to_utc_timestamp</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link rel="stylesheet" type="text/css" href="R.css" />
+
+<link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css";>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js";></script>
+<script 
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/languages/r.min.js";></script>
+<script>hljs.initHighlightingOnLoad();</script>
+</head><body>
+
+<table width="100%" summary="page for to_utc_timestamp 
{SparkR}"><tr><td>to_utc_timestamp {SparkR}</td><td style="text-align: 
right;">R Documentation</td></tr></table>
+
+<h2>to_utc_timestamp</h2>
+
+<h3>Description</h3>
+
+<p>Given a timestamp, which corresponds to a certain time of day in the given 
timezone, returns
+another timestamp that corresponds to the same time of day in UTC.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+to_utc_timestamp(y, x)
+
+## S4 method for signature 'Column,character'
+to_utc_timestamp(y, x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>y</code></td>
+<td>
+<p>Column to compute on</p>
+</td></tr>
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>timezone to use</p>
+</td></tr>
+</table>
+
+
+<h3>Note</h3>
+
+<p>to_utc_timestamp since 1.5.0
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="date_add.html">date_add</a></code>, <code><a 
href="date_format.html">date_format</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>, <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="from_unixtime.html">from_unixtime</a></code>,
+<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>, 
<code><a href="hour.html">hour</a></code>,
+<code><a href="last_day.html">last_day</a></code>, <code><a 
href="minute.html">minute</a></code>,
+<code><a href="months_between.html">months_between</a></code>, <code><a 
href="month.html">month</a></code>,
+<code><a href="next_day.html">next_day</a></code>, <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="second.html">second</a></code>, <code><a 
href="to_date.html">to_date</a></code>,
+<code><a href="to_timestamp.html">to_timestamp</a></code>, <code><a 
href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="weekofyear.html">weekofyear</a></code>, <code><a 
href="window.html">window</a></code>,
+<code><a href="year.html">year</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: to_utc_timestamp(df$t, &#39;PST&#39;)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 2.2.2 
<a href="00Index.html">Index</a>]</div>
+</body></html>


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

Reply via email to