Added: spark/site/docs/1.5.0/api/R/greatest.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/greatest.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/greatest.html (added)
+++ spark/site/docs/1.5.0/api/R/greatest.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,44 @@
+<!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: greatest</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 greatest {SparkR}"><tr><td>greatest 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>greatest</h2>
+
+<h3>Description</h3>
+
+<p>Returns the greatest value of the list of column names, skipping null 
values.
+This function takes at least 2 parameters. It will return null if all 
parameters are null.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+greatest(x, ...)
+
+greatest(x, ...)
+</pre>
+
+
+<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="bitwiseNOT.html">bitwiseNOT</a></code>;
+<code><a href="expr.html">expr</a></code>, <code><a 
href="expr.html">expr</a></code>;
+<code><a href="ifelse.html">ifelse</a></code>; <code><a 
href="isNaN.html">isNaN</a></code>,
+<code><a href="isNaN.html">isNaN</a></code>; <code><a 
href="least.html">least</a></code>,
+<code><a href="least.html">least</a></code>; <code><a 
href="lit.html">lit</a></code>,
+<code><a href="lit.html">lit</a></code>; <code><a 
href="nanvl.html">nanvl</a></code>,
+<code><a href="nanvl.html">nanvl</a></code>; <code><a 
href="negate.html">negate</a></code>,
+<code><a href="negate.html">negate</a></code>; <code><a 
href="randn.html">randn</a></code>,
+<code><a href="randn.html">randn</a></code>, <code><a 
href="randn.html">randn</a></code>;
+<code><a href="rand.html">rand</a></code>, <code><a 
href="rand.html">rand</a></code>,
+<code><a href="rand.html">rand</a></code>; <code><a 
href="when.html">when</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/groupBy.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/groupBy.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/groupBy.html (added)
+++ spark/site/docs/1.5.0/api/R/groupBy.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,71 @@
+<!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: GroupBy</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 groupBy {SparkR}"><tr><td>groupBy 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>GroupBy</h2>
+
+<h3>Description</h3>
+
+<p>Groups the DataFrame using the specified columns, so we can run aggregation 
on them.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame'
+groupBy(x, ...)
+
+## S4 method for signature 'DataFrame'
+group_by(x, ...)
+
+group_by(x, ...)
+
+groupBy(x, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>a DataFrame</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>a GroupedData
+</p>
+
+
+<h3>See Also</h3>
+
+<p>GroupedData
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D   # Compute the average for all numeric columns grouped by department.
+##D   avg(groupBy(df, &quot;department&quot;))
+##D 
+##D   # Compute the max age and average salary, grouped by department and 
gender.
+##D   agg(groupBy(df, &quot;department&quot;, &quot;gender&quot;), 
salary=&quot;avg&quot;, &quot;age&quot; -&gt; &quot;max&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/hashCode.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/hashCode.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/hashCode.html (added)
+++ spark/site/docs/1.5.0/api/R/hashCode.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,73 @@
+<!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: Compute the hashCode of an 
object</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 hashCode {SparkR}"><tr><td>hashCode 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Compute the hashCode of an object</h2>
+
+<h3>Description</h3>
+
+<p>Java-style function to compute the hashCode for the given object. Returns
+an integer value.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+hashCode(key)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>key</code></td>
+<td>
+<p>the object to be hashed</p>
+</td></tr>
+</table>
+
+
+<h3>Details</h3>
+
+<p>This only works for integer, numeric and character types right now.
+</p>
+
+
+<h3>Value</h3>
+
+<p>the hash code as an integer
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">hashCode(1L) # 1
+</code></pre>
+
+<pre><code>## Error in eval(expr, envir, enclos): could not find function 
&quot;hashCode&quot;
+</code></pre>
+
+<pre><code class="r">hashCode(1.0) # 1072693248
+</code></pre>
+
+<pre><code>## Error in eval(expr, envir, enclos): could not find function 
&quot;hashCode&quot;
+</code></pre>
+
+<pre><code class="r">hashCode(&quot;1&quot;) # 49
+</code></pre>
+
+<pre><code>## Error in eval(expr, envir, enclos): could not find function 
&quot;hashCode&quot;
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/head.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/head.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/head.html (added)
+++ spark/site/docs/1.5.0/api/R/head.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,64 @@
+<!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: Head</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 head {SparkR}"><tr><td>head 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Head</h2>
+
+<h3>Description</h3>
+
+<p>Return the first NUM rows of a DataFrame as a data.frame. If NUM is NULL,
+then head() returns the first 6 rows in keeping with the current data.frame
+convention in R.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame'
+head(x, num = 6L)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A SparkSQL DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>num</code></td>
+<td>
+<p>The number of rows to return. Default is 6.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A data.frame
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- jsonFile(sqlContext, path)
+##D head(df)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/hex.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/hex.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/hex.html (added)
+++ spark/site/docs/1.5.0/api/R/hex.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,69 @@
+<!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: hex</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 hex {SparkR}"><tr><td>hex 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>hex</h2>
+
+<h3>Description</h3>
+
+<p>Computes hex value of the given column.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+hex(x)
+
+hex(x)
+</pre>
+
+
+<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="bin.html">bin</a></code>; <code><a href="cbrt.html">cbrt</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>; <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="ceil.html">ceil</a></code>, <code><a 
href="ceil.html">ceil</a></code>;
+<code><a href="conv.html">conv</a></code>, <code><a 
href="conv.html">conv</a></code>;
+<code><a href="cosh.html">cosh</a></code>; <code><a 
href="cos.html">cos</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="hypot.html">hypot</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="pmod.html">pmod</a></code>;
+<code><a href="rint.html">rint</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="shiftLeft.html">shiftLeft</a></code>;
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>;
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="shiftRight.html">shiftRight</a></code>;
+<code><a href="signum.html">signum</a></code>, <code><a 
href="signum.html">signum</a></code>,
+<code><a href="signum.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="toDegrees.html">toDegrees</a></code>;
+<code><a href="toRadians.html">toRadians</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>;
+<code><a href="unhex.html">unhex</a></code>, <code><a 
href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: hex(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/hour.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/hour.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/hour.html (added)
+++ spark/site/docs/1.5.0/api/R/hour.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,69 @@
+<!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: hour</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 hour {SparkR}"><tr><td>hour 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>hour</h2>
+
+<h3>Description</h3>
+
+<p>Extracts the hours as an integer from a given date/timestamp/string.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+hour(x)
+
+hour(x)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="add_months.html">add_months</a></code>; <code><a 
href="date_add.html">date_add</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_format.html">date_format</a></code>; <code><a 
href="date_sub.html">date_sub</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>; <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="datediff.html">datediff</a></code>; <code><a 
href="dayofmonth.html">dayofmonth</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>; <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="dayofyear.html">dayofyear</a></code>; <code><a 
href="from_unixtime.html">from_unixtime</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="from_utc_timestamp.html">from_utc_timestamp</a></code>; 
<code><a href="last_day.html">last_day</a></code>,
+<code><a href="last_day.html">last_day</a></code>; <code><a 
href="minute.html">minute</a></code>,
+<code><a href="minute.html">minute</a></code>; <code><a 
href="months_between.html">months_between</a></code>,
+<code><a href="months_between.html">months_between</a></code>; <code><a 
href="month.html">month</a></code>,
+<code><a href="month.html">month</a></code>; <code><a 
href="next_day.html">next_day</a></code>,
+<code><a href="next_day.html">next_day</a></code>; <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="quarter.html">quarter</a></code>; <code><a 
href="second.html">second</a></code>,
+<code><a href="second.html">second</a></code>; <code><a 
href="to_date.html">to_date</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="to_utc_timestamp.html">to_utc_timestamp</a></code>;
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>; <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="weekofyear.html">weekofyear</a></code>; <code><a 
href="year.html">year</a></code>,
+<code><a href="year.html">year</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: hour(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/hypot.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/hypot.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/hypot.html (added)
+++ spark/site/docs/1.5.0/api/R/hypot.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,69 @@
+<!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: hypot</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 hypot {SparkR}"><tr><td>hypot 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>hypot</h2>
+
+<h3>Description</h3>
+
+<p>Computes 'sqrt(a^2^ + b^2^)' without intermediate overflow or underflow.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+hypot(y, x)
+
+hypot(y, x)
+</pre>
+
+
+<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="bin.html">bin</a></code>; <code><a href="cbrt.html">cbrt</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>; <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="ceil.html">ceil</a></code>, <code><a 
href="ceil.html">ceil</a></code>;
+<code><a href="conv.html">conv</a></code>, <code><a 
href="conv.html">conv</a></code>;
+<code><a href="cosh.html">cosh</a></code>; <code><a 
href="cos.html">cos</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="hex.html">hex</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="pmod.html">pmod</a></code>;
+<code><a href="rint.html">rint</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="shiftLeft.html">shiftLeft</a></code>;
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>;
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="shiftRight.html">shiftRight</a></code>;
+<code><a href="signum.html">signum</a></code>, <code><a 
href="signum.html">signum</a></code>,
+<code><a href="signum.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="toDegrees.html">toDegrees</a></code>;
+<code><a href="toRadians.html">toRadians</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>;
+<code><a href="unhex.html">unhex</a></code>, <code><a 
href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: hypot(df$c, x)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/ifelse.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/ifelse.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/ifelse.html (added)
+++ spark/site/docs/1.5.0/api/R/ifelse.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,43 @@
+<!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: ifelse</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 ifelse {SparkR}"><tr><td>ifelse 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>ifelse</h2>
+
+<h3>Description</h3>
+
+<p>Evaluates a list of conditions and returns <code>yes</code> if the 
conditions are satisfied.
+Otherwise <code>no</code> is returned for unmatched conditions.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+ifelse(test, yes, no)
+</pre>
+
+
+<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="bitwiseNOT.html">bitwiseNOT</a></code>;
+<code><a href="expr.html">expr</a></code>, <code><a 
href="expr.html">expr</a></code>;
+<code><a href="greatest.html">greatest</a></code>, <code><a 
href="greatest.html">greatest</a></code>;
+<code><a href="isNaN.html">isNaN</a></code>, <code><a 
href="isNaN.html">isNaN</a></code>;
+<code><a href="least.html">least</a></code>, <code><a 
href="least.html">least</a></code>;
+<code><a href="lit.html">lit</a></code>, <code><a 
href="lit.html">lit</a></code>;
+<code><a href="nanvl.html">nanvl</a></code>, <code><a 
href="nanvl.html">nanvl</a></code>;
+<code><a href="negate.html">negate</a></code>, <code><a 
href="negate.html">negate</a></code>;
+<code><a href="randn.html">randn</a></code>, <code><a 
href="randn.html">randn</a></code>,
+<code><a href="randn.html">randn</a></code>; <code><a 
href="rand.html">rand</a></code>,
+<code><a href="rand.html">rand</a></code>, <code><a 
href="rand.html">rand</a></code>;
+<code><a href="when.html">when</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/index.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/index.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/index.html (added)
+++ spark/site/docs/1.5.0/api/R/index.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 
"http://www.w3.org/TR/html4/frameset.dtd";>
+<html>
+<head><title>Documentation of the SparkR package</title></head>
+<frameset cols="15%,*">
+  <frame src="00frame_toc.html">
+  <frame src="00Index.html" name="content">
+</frameset>
+</html>
+

Added: spark/site/docs/1.5.0/api/R/infer_type.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/infer_type.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/infer_type.html (added)
+++ spark/site/docs/1.5.0/api/R/infer_type.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,23 @@
+<!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: infer the SQL type</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 infer_type {SparkR}"><tr><td>infer_type 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>infer the SQL type</h2>
+
+<h3>Description</h3>
+
+<p>infer the SQL type
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+infer_type(x)
+</pre>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/initcap.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/initcap.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/initcap.html (added)
+++ spark/site/docs/1.5.0/api/R/initcap.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,76 @@
+<!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: initcap</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 initcap {SparkR}"><tr><td>initcap 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>initcap</h2>
+
+<h3>Description</h3>
+
+<p>Returns a new string column by converting the first letter of each word to 
uppercase.
+Words are delimited by whitespace.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+initcap(x)
+
+initcap(x)
+</pre>
+
+
+<h3>Details</h3>
+
+<p>For example, &quot;hello world&quot; will become &quot;Hello World&quot;.
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="ascii.html">ascii</a></code>; <code><a 
href="base64.html">base64</a></code>,
+<code><a href="base64.html">base64</a></code>; <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat_ws.html">concat_ws</a></code>; <code><a 
href="concat.html">concat</a></code>,
+<code><a href="concat.html">concat</a></code>; <code><a 
href="format_number.html">format_number</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="format_string.html">format_string</a></code>; <code><a 
href="instr.html">instr</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="levenshtein.html">levenshtein</a></code>;
+<code><a href="locate.html">locate</a></code>, <code><a 
href="locate.html">locate</a></code>;
+<code><a href="lower.html">lower</a></code>, <code><a 
href="lower.html">lower</a></code>;
+<code><a href="lpad.html">lpad</a></code>, <code><a 
href="lpad.html">lpad</a></code>;
+<code><a href="ltrim.html">ltrim</a></code>, <code><a 
href="ltrim.html">ltrim</a></code>;
+<code><a href="regexp_extract.html">regexp_extract</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="regexp_replace.html">regexp_replace</a></code>; <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="reverse.html">reverse</a></code>; <code><a 
href="rpad.html">rpad</a></code>,
+<code><a href="rpad.html">rpad</a></code>; <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="rtrim.html">rtrim</a></code>; <code><a 
href="soundex.html">soundex</a></code>,
+<code><a href="soundex.html">soundex</a></code>; <code><a 
href="substring_index.html">substring_index</a></code>,
+<code><a href="substring_index.html">substring_index</a></code>; <code><a 
href="translate.html">translate</a></code>,
+<code><a href="translate.html">translate</a></code>; <code><a 
href="trim.html">trim</a></code>,
+<code><a href="trim.html">trim</a></code>; <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="unbase64.html">unbase64</a></code>; <code><a 
href="upper.html">upper</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: initcap(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/insertInto.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/insertInto.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/insertInto.html (added)
+++ spark/site/docs/1.5.0/api/R/insertInto.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,64 @@
+<!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: insertInto</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 insertInto {SparkR}"><tr><td>insertInto 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>insertInto</h2>
+
+<h3>Description</h3>
+
+<p>Insert the contents of a DataFrame into a table registered in the current 
SQL Context.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame,character'
+insertInto(x, tableName, overwrite = FALSE)
+
+insertInto(x, tableName, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A SparkSQL DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>tableName</code></td>
+<td>
+<p>A character vector containing the name of the table</p>
+</td></tr>
+<tr valign="top"><td><code>overwrite</code></td>
+<td>
+<p>A logical argument indicating whether or not to overwrite
+the existing rows in the table.</p>
+</td></tr>
+</table>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D df &lt;- read.df(sqlContext, path, &quot;parquet&quot;)
+##D df2 &lt;- read.df(sqlContext, path2, &quot;parquet&quot;)
+##D registerTempTable(df, &quot;table1&quot;)
+##D insertInto(df2, &quot;table1&quot;, overwrite = TRUE)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/instr.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/instr.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/instr.html (added)
+++ spark/site/docs/1.5.0/api/R/instr.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,65 @@
+<!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: instr</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 instr {SparkR}"><tr><td>instr 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>instr</h2>
+
+<h3>Description</h3>
+
+<p>Locate the position of the first occurrence of substr column in the given 
string.
+Returns null if either of the arguments are null.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column,character'
+instr(y, x)
+
+instr(y, x)
+</pre>
+
+
+<h3>Details</h3>
+
+<p>NOTE: The position is not zero based, but 1 based index, returns 0 if substr
+could not be found in str.
+</p>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="ascii.html">ascii</a></code>; <code><a 
href="base64.html">base64</a></code>,
+<code><a href="base64.html">base64</a></code>; <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat_ws.html">concat_ws</a></code>; <code><a 
href="concat.html">concat</a></code>,
+<code><a href="concat.html">concat</a></code>; <code><a 
href="format_number.html">format_number</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="format_string.html">format_string</a></code>; <code><a 
href="initcap.html">initcap</a></code>,
+<code><a href="initcap.html">initcap</a></code>; <code><a 
href="length.html">length</a></code>;
+<code><a href="levenshtein.html">levenshtein</a></code>, <code><a 
href="levenshtein.html">levenshtein</a></code>;
+<code><a href="locate.html">locate</a></code>, <code><a 
href="locate.html">locate</a></code>;
+<code><a href="lower.html">lower</a></code>, <code><a 
href="lower.html">lower</a></code>;
+<code><a href="lpad.html">lpad</a></code>, <code><a 
href="lpad.html">lpad</a></code>;
+<code><a href="ltrim.html">ltrim</a></code>, <code><a 
href="ltrim.html">ltrim</a></code>;
+<code><a href="regexp_extract.html">regexp_extract</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="regexp_replace.html">regexp_replace</a></code>; <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="reverse.html">reverse</a></code>; <code><a 
href="rpad.html">rpad</a></code>,
+<code><a href="rpad.html">rpad</a></code>; <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="rtrim.html">rtrim</a></code>; <code><a 
href="soundex.html">soundex</a></code>,
+<code><a href="soundex.html">soundex</a></code>; <code><a 
href="substring_index.html">substring_index</a></code>,
+<code><a href="substring_index.html">substring_index</a></code>; <code><a 
href="translate.html">translate</a></code>,
+<code><a href="translate.html">translate</a></code>; <code><a 
href="trim.html">trim</a></code>,
+<code><a href="trim.html">trim</a></code>; <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="unbase64.html">unbase64</a></code>; <code><a 
href="upper.html">upper</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/intersect.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/intersect.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/intersect.html (added)
+++ spark/site/docs/1.5.0/api/R/intersect.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,65 @@
+<!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: Intersect</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 intersect {SparkR}"><tr><td>intersect 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Intersect</h2>
+
+<h3>Description</h3>
+
+<p>Return a new DataFrame containing rows only in both this DataFrame
+and another DataFrame. This is equivalent to 'INTERSECT' in SQL.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame,DataFrame'
+intersect(x, y)
+
+intersect(x, y)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A Spark DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>y</code></td>
+<td>
+<p>A Spark DataFrame</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A DataFrame containing the result of the intersect.
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D df1 &lt;- jsonFile(sqlContext, path)
+##D df2 &lt;- jsonFile(sqlContext, path2)
+##D intersectDF &lt;- intersect(df, df2)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/isLocal.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/isLocal.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/isLocal.html (added)
+++ spark/site/docs/1.5.0/api/R/isLocal.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,55 @@
+<!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: isLocal</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 isLocal {SparkR}"><tr><td>isLocal 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>isLocal</h2>
+
+<h3>Description</h3>
+
+<p>Returns True if the 'collect' and 'take' methods can be run locally
+(without any Spark executors).
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame'
+isLocal(x)
+
+isLocal(x)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A SparkSQL DataFrame</p>
+</td></tr>
+</table>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- jsonFile(sqlContext, path)
+##D isLocal(df)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/isNaN.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/isNaN.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/isNaN.html (added)
+++ spark/site/docs/1.5.0/api/R/isNaN.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,55 @@
+<!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: isNaN</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 isNaN {SparkR}"><tr><td>isNaN 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>isNaN</h2>
+
+<h3>Description</h3>
+
+<p>Return true iff the column is NaN.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+isNaN(x)
+
+isNaN(x)
+</pre>
+
+
+<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="bitwiseNOT.html">bitwiseNOT</a></code>;
+<code><a href="expr.html">expr</a></code>, <code><a 
href="expr.html">expr</a></code>;
+<code><a href="greatest.html">greatest</a></code>, <code><a 
href="greatest.html">greatest</a></code>;
+<code><a href="ifelse.html">ifelse</a></code>; <code><a 
href="least.html">least</a></code>,
+<code><a href="least.html">least</a></code>; <code><a 
href="lit.html">lit</a></code>,
+<code><a href="lit.html">lit</a></code>; <code><a 
href="nanvl.html">nanvl</a></code>,
+<code><a href="nanvl.html">nanvl</a></code>; <code><a 
href="negate.html">negate</a></code>,
+<code><a href="negate.html">negate</a></code>; <code><a 
href="randn.html">randn</a></code>,
+<code><a href="randn.html">randn</a></code>, <code><a 
href="randn.html">randn</a></code>;
+<code><a href="rand.html">rand</a></code>, <code><a 
href="rand.html">rand</a></code>,
+<code><a href="rand.html">rand</a></code>; <code><a 
href="when.html">when</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: isNaN(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/join.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/join.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/join.html (added)
+++ spark/site/docs/1.5.0/api/R/join.html Fri Sep 18 16:25:35 2015
@@ -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: Join</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 join {SparkR}"><tr><td>join 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Join</h2>
+
+<h3>Description</h3>
+
+<p>Join two DataFrames based on the given join expression.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame,DataFrame'
+join(x, y, joinExpr = NULL, joinType = NULL)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A Spark DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>y</code></td>
+<td>
+<p>A Spark DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>joinExpr</code></td>
+<td>
+<p>(Optional) The expression used to perform the join. joinExpr must be a
+Column expression. If joinExpr is omitted, join() wil perform a Cartesian 
join</p>
+</td></tr>
+<tr valign="top"><td><code>joinType</code></td>
+<td>
+<p>The type of join to perform. The following join types are available:
+'inner', 'outer', 'left_outer', 'right_outer', 'semijoin'. The default 
joinType is &quot;inner&quot;.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A DataFrame containing the result of the join operation.
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D df1 &lt;- jsonFile(sqlContext, path)
+##D df2 &lt;- jsonFile(sqlContext, path2)
+##D join(df1, df2) # Performs a Cartesian
+##D join(df1, df2, df1$col1 == df2$col2) # Performs an inner join based on 
expression
+##D join(df1, df2, df1$col1 == df2$col2, &quot;right_outer&quot;)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/jsonFile.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/jsonFile.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/jsonFile.html (added)
+++ spark/site/docs/1.5.0/api/R/jsonFile.html Fri Sep 18 16:25:35 2015
@@ -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: Create a DataFrame from a 
JSON file.</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 jsonFile {SparkR}"><tr><td>jsonFile 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Create a DataFrame from a JSON file.</h2>
+
+<h3>Description</h3>
+
+<p>Loads a JSON file (one object per line), returning the result as a DataFrame
+It goes through the entire dataset once to determine the schema.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+jsonFile(sqlContext, path)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>sqlContext</code></td>
+<td>
+<p>SQLContext to use</p>
+</td></tr>
+<tr valign="top"><td><code>path</code></td>
+<td>
+<p>Path of file to read. A vector of multiple paths is allowed.</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>DataFrame
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- jsonFile(sqlContext, path)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/last.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/last.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/last.html (added)
+++ spark/site/docs/1.5.0/api/R/last.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,55 @@
+<!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: last</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 last {SparkR}"><tr><td>last 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>last</h2>
+
+<h3>Description</h3>
+
+<p>Aggregate function: returns the last value in a group.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+last(x)
+
+last(x)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other agg_funcs: <code><a 
href="approxCountDistinct.html">approxCountDistinct</a></code>,
+<code><a href="approxCountDistinct.html">approxCountDistinct</a></code>,
+<code><a href="approxCountDistinct.html">approxCountDistinct</a></code>; 
<code><a href="avg.html">avg</a></code>,
+<code><a href="avg.html">avg</a></code>; <code><a 
href="countDistinct.html">countDistinct</a></code>,
+<code><a href="countDistinct.html">countDistinct</a></code>, <code><a 
href="countDistinct.html">countDistinct</a></code>,
+<code><a href="countDistinct.html">n_distinct</a></code>; <code><a 
href="nrow.html">count</a></code>,
+<code><a href="nrow.html">count</a></code>, <code><a 
href="nrow.html">count</a></code>,
+<code><a href="count.html">n</a></code>, <code><a 
href="nrow.html">nrow</a></code>; <code><a href="first.html">first</a></code>,
+<code><a href="first.html">first</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="sumDistinct.html">sumDistinct</a></code>, <code><a 
href="sumDistinct.html">sumDistinct</a></code>;
+<code><a href="sum.html">sum</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: last(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/last_day.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/last_day.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/last_day.html (added)
+++ spark/site/docs/1.5.0/api/R/last_day.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,71 @@
+<!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: last_day</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 last_day {SparkR}"><tr><td>last_day 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>last_day</h2>
+
+<h3>Description</h3>
+
+<p>Given a date column, returns the last day of the month which the given date 
belongs to.
+For example, input &quot;2015-07-27&quot; returns &quot;2015-07-31&quot; since 
July 31 is the last day of the
+month in July 2015.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+last_day(x)
+
+last_day(x)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
+<code><a href="add_months.html">add_months</a></code>; <code><a 
href="date_add.html">date_add</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_format.html">date_format</a></code>; <code><a 
href="date_sub.html">date_sub</a></code>,
+<code><a href="date_sub.html">date_sub</a></code>; <code><a 
href="datediff.html">datediff</a></code>,
+<code><a href="datediff.html">datediff</a></code>; <code><a 
href="dayofmonth.html">dayofmonth</a></code>,
+<code><a href="dayofmonth.html">dayofmonth</a></code>; <code><a 
href="dayofyear.html">dayofyear</a></code>,
+<code><a href="dayofyear.html">dayofyear</a></code>; <code><a 
href="from_unixtime.html">from_unixtime</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="from_utc_timestamp.html">from_utc_timestamp</a></code>; 
<code><a href="hour.html">hour</a></code>,
+<code><a href="hour.html">hour</a></code>; <code><a 
href="minute.html">minute</a></code>,
+<code><a href="minute.html">minute</a></code>; <code><a 
href="months_between.html">months_between</a></code>,
+<code><a href="months_between.html">months_between</a></code>; <code><a 
href="month.html">month</a></code>,
+<code><a href="month.html">month</a></code>; <code><a 
href="next_day.html">next_day</a></code>,
+<code><a href="next_day.html">next_day</a></code>; <code><a 
href="quarter.html">quarter</a></code>,
+<code><a href="quarter.html">quarter</a></code>; <code><a 
href="second.html">second</a></code>,
+<code><a href="second.html">second</a></code>; <code><a 
href="to_date.html">to_date</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="to_utc_timestamp.html">to_utc_timestamp</a></code>;
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
+<code><a href="unix_timestamp.html">unix_timestamp</a></code>; <code><a 
href="weekofyear.html">weekofyear</a></code>,
+<code><a href="weekofyear.html">weekofyear</a></code>; <code><a 
href="year.html">year</a></code>,
+<code><a href="year.html">year</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: last_day(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/least.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/least.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/least.html (added)
+++ spark/site/docs/1.5.0/api/R/least.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,44 @@
+<!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: least</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 least {SparkR}"><tr><td>least 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>least</h2>
+
+<h3>Description</h3>
+
+<p>Returns the least value of the list of column names, skipping null values.
+This function takes at least 2 parameters. It will return null iff all 
parameters are null.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+least(x, ...)
+
+least(x, ...)
+</pre>
+
+
+<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="bitwiseNOT.html">bitwiseNOT</a></code>;
+<code><a href="expr.html">expr</a></code>, <code><a 
href="expr.html">expr</a></code>;
+<code><a href="greatest.html">greatest</a></code>, <code><a 
href="greatest.html">greatest</a></code>;
+<code><a href="ifelse.html">ifelse</a></code>; <code><a 
href="isNaN.html">isNaN</a></code>,
+<code><a href="isNaN.html">isNaN</a></code>; <code><a 
href="lit.html">lit</a></code>,
+<code><a href="lit.html">lit</a></code>; <code><a 
href="nanvl.html">nanvl</a></code>,
+<code><a href="nanvl.html">nanvl</a></code>; <code><a 
href="negate.html">negate</a></code>,
+<code><a href="negate.html">negate</a></code>; <code><a 
href="randn.html">randn</a></code>,
+<code><a href="randn.html">randn</a></code>, <code><a 
href="randn.html">randn</a></code>;
+<code><a href="rand.html">rand</a></code>, <code><a 
href="rand.html">rand</a></code>,
+<code><a href="rand.html">rand</a></code>; <code><a 
href="when.html">when</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/length.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/length.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/length.html (added)
+++ spark/site/docs/1.5.0/api/R/length.html Fri Sep 18 16:25:35 2015
@@ -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: length</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 length {SparkR}"><tr><td>length 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>length</h2>
+
+<h3>Description</h3>
+
+<p>Computes the length of a given string or binary column.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+length(x)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="ascii.html">ascii</a></code>; <code><a 
href="base64.html">base64</a></code>,
+<code><a href="base64.html">base64</a></code>; <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat_ws.html">concat_ws</a></code>; <code><a 
href="concat.html">concat</a></code>,
+<code><a href="concat.html">concat</a></code>; <code><a 
href="format_number.html">format_number</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="format_string.html">format_string</a></code>; <code><a 
href="initcap.html">initcap</a></code>,
+<code><a href="initcap.html">initcap</a></code>; <code><a 
href="instr.html">instr</a></code>,
+<code><a href="instr.html">instr</a></code>; <code><a 
href="levenshtein.html">levenshtein</a></code>,
+<code><a href="levenshtein.html">levenshtein</a></code>; <code><a 
href="locate.html">locate</a></code>,
+<code><a href="locate.html">locate</a></code>; <code><a 
href="lower.html">lower</a></code>,
+<code><a href="lower.html">lower</a></code>; <code><a 
href="lpad.html">lpad</a></code>,
+<code><a href="lpad.html">lpad</a></code>; <code><a 
href="ltrim.html">ltrim</a></code>,
+<code><a href="ltrim.html">ltrim</a></code>; <code><a 
href="regexp_extract.html">regexp_extract</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="regexp_replace.html">regexp_replace</a></code>; <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="reverse.html">reverse</a></code>; <code><a 
href="rpad.html">rpad</a></code>,
+<code><a href="rpad.html">rpad</a></code>; <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="rtrim.html">rtrim</a></code>; <code><a 
href="soundex.html">soundex</a></code>,
+<code><a href="soundex.html">soundex</a></code>; <code><a 
href="substring_index.html">substring_index</a></code>,
+<code><a href="substring_index.html">substring_index</a></code>; <code><a 
href="translate.html">translate</a></code>,
+<code><a href="translate.html">translate</a></code>; <code><a 
href="trim.html">trim</a></code>,
+<code><a href="trim.html">trim</a></code>; <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="unbase64.html">unbase64</a></code>; <code><a 
href="upper.html">upper</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: length(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/levenshtein.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/levenshtein.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/levenshtein.html (added)
+++ spark/site/docs/1.5.0/api/R/levenshtein.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,69 @@
+<!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: levenshtein</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 levenshtein 
{SparkR}"><tr><td>levenshtein {SparkR}</td><td style="text-align: right;">R 
Documentation</td></tr></table>
+
+<h2>levenshtein</h2>
+
+<h3>Description</h3>
+
+<p>Computes the Levenshtein distance of the two given string columns.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+levenshtein(y, x)
+
+levenshtein(y, x)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="ascii.html">ascii</a></code>; <code><a 
href="base64.html">base64</a></code>,
+<code><a href="base64.html">base64</a></code>; <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat_ws.html">concat_ws</a></code>; <code><a 
href="concat.html">concat</a></code>,
+<code><a href="concat.html">concat</a></code>; <code><a 
href="format_number.html">format_number</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="format_string.html">format_string</a></code>; <code><a 
href="initcap.html">initcap</a></code>,
+<code><a href="initcap.html">initcap</a></code>; <code><a 
href="instr.html">instr</a></code>,
+<code><a href="instr.html">instr</a></code>; <code><a 
href="length.html">length</a></code>;
+<code><a href="locate.html">locate</a></code>, <code><a 
href="locate.html">locate</a></code>;
+<code><a href="lower.html">lower</a></code>, <code><a 
href="lower.html">lower</a></code>;
+<code><a href="lpad.html">lpad</a></code>, <code><a 
href="lpad.html">lpad</a></code>;
+<code><a href="ltrim.html">ltrim</a></code>, <code><a 
href="ltrim.html">ltrim</a></code>;
+<code><a href="regexp_extract.html">regexp_extract</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="regexp_replace.html">regexp_replace</a></code>; <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="reverse.html">reverse</a></code>; <code><a 
href="rpad.html">rpad</a></code>,
+<code><a href="rpad.html">rpad</a></code>; <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="rtrim.html">rtrim</a></code>; <code><a 
href="soundex.html">soundex</a></code>,
+<code><a href="soundex.html">soundex</a></code>; <code><a 
href="substring_index.html">substring_index</a></code>,
+<code><a href="substring_index.html">substring_index</a></code>; <code><a 
href="translate.html">translate</a></code>,
+<code><a href="translate.html">translate</a></code>; <code><a 
href="trim.html">trim</a></code>,
+<code><a href="trim.html">trim</a></code>; <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="unbase64.html">unbase64</a></code>; <code><a 
href="upper.html">upper</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: levenshtein(df$c, x)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/limit.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/limit.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/limit.html (added)
+++ spark/site/docs/1.5.0/api/R/limit.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,64 @@
+<!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: Limit</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 limit {SparkR}"><tr><td>limit 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Limit</h2>
+
+<h3>Description</h3>
+
+<p>Limit the resulting DataFrame to the number of rows specified.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'DataFrame,numeric'
+limit(x, num)
+
+limit(x, num)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+<p>A SparkSQL DataFrame</p>
+</td></tr>
+<tr valign="top"><td><code>num</code></td>
+<td>
+<p>The number of rows to return</p>
+</td></tr>
+</table>
+
+
+<h3>Value</h3>
+
+<p>A new DataFrame containing the number of rows specified.
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: 
+##D sc &lt;- sparkR.init()
+##D sqlContext &lt;- sparkRSQL.init(sc)
+##D path &lt;- &quot;path/to/file.json&quot;
+##D df &lt;- jsonFile(sqlContext, path)
+##D limitedDF &lt;- limit(df, 10)
+## End(Not run)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/lit.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/lit.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/lit.html (added)
+++ spark/site/docs/1.5.0/api/R/lit.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,45 @@
+<!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: Creates a 'Column' of 
literal value.</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 lit {SparkR}"><tr><td>lit 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>Creates a <code>Column</code> of literal value.</h2>
+
+<h3>Description</h3>
+
+<p>The passed in object is returned directly if it is already a <a 
href="column.html">Column</a>.
+If the object is a Scala Symbol, it is converted into a <a 
href="column.html">Column</a> also.
+Otherwise, a new <a href="column.html">Column</a> is created to represent the 
literal value.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'ANY'
+lit(x)
+
+lit(x)
+</pre>
+
+
+<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="bitwiseNOT.html">bitwiseNOT</a></code>;
+<code><a href="expr.html">expr</a></code>, <code><a 
href="expr.html">expr</a></code>;
+<code><a href="greatest.html">greatest</a></code>, <code><a 
href="greatest.html">greatest</a></code>;
+<code><a href="ifelse.html">ifelse</a></code>; <code><a 
href="isNaN.html">isNaN</a></code>,
+<code><a href="isNaN.html">isNaN</a></code>; <code><a 
href="least.html">least</a></code>,
+<code><a href="least.html">least</a></code>; <code><a 
href="nanvl.html">nanvl</a></code>,
+<code><a href="nanvl.html">nanvl</a></code>; <code><a 
href="negate.html">negate</a></code>,
+<code><a href="negate.html">negate</a></code>; <code><a 
href="randn.html">randn</a></code>,
+<code><a href="randn.html">randn</a></code>, <code><a 
href="randn.html">randn</a></code>;
+<code><a href="rand.html">rand</a></code>, <code><a 
href="rand.html">rand</a></code>,
+<code><a href="rand.html">rand</a></code>; <code><a 
href="when.html">when</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/locate.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/locate.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/locate.html (added)
+++ spark/site/docs/1.5.0/api/R/locate.html Fri Sep 18 16:25:35 2015
@@ -0,0 +1,59 @@
+<!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: locate</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 locate {SparkR}"><tr><td>locate 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>locate</h2>
+
+<h3>Description</h3>
+
+<p>Locate the position of the first occurrence of substr.
+NOTE: The position is not zero based, but 1 based index, returns 0 if substr
+could not be found in str.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'character,Column'
+locate(substr, str, pos = 0)
+
+locate(substr, str, ...)
+</pre>
+
+
+<h3>See Also</h3>
+
+<p>Other string_funcs: <code><a href="ascii.html">ascii</a></code>,
+<code><a href="ascii.html">ascii</a></code>; <code><a 
href="base64.html">base64</a></code>,
+<code><a href="base64.html">base64</a></code>; <code><a 
href="concat_ws.html">concat_ws</a></code>,
+<code><a href="concat_ws.html">concat_ws</a></code>; <code><a 
href="concat.html">concat</a></code>,
+<code><a href="concat.html">concat</a></code>; <code><a 
href="format_number.html">format_number</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="format_string.html">format_string</a></code>; <code><a 
href="initcap.html">initcap</a></code>,
+<code><a href="initcap.html">initcap</a></code>; <code><a 
href="instr.html">instr</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="levenshtein.html">levenshtein</a></code>;
+<code><a href="lower.html">lower</a></code>, <code><a 
href="lower.html">lower</a></code>;
+<code><a href="lpad.html">lpad</a></code>, <code><a 
href="lpad.html">lpad</a></code>;
+<code><a href="ltrim.html">ltrim</a></code>, <code><a 
href="ltrim.html">ltrim</a></code>;
+<code><a href="regexp_extract.html">regexp_extract</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="regexp_replace.html">regexp_replace</a></code>; <code><a 
href="reverse.html">reverse</a></code>,
+<code><a href="reverse.html">reverse</a></code>; <code><a 
href="rpad.html">rpad</a></code>,
+<code><a href="rpad.html">rpad</a></code>; <code><a 
href="rtrim.html">rtrim</a></code>,
+<code><a href="rtrim.html">rtrim</a></code>; <code><a 
href="soundex.html">soundex</a></code>,
+<code><a href="soundex.html">soundex</a></code>; <code><a 
href="substring_index.html">substring_index</a></code>,
+<code><a href="substring_index.html">substring_index</a></code>; <code><a 
href="translate.html">translate</a></code>,
+<code><a href="translate.html">translate</a></code>; <code><a 
href="trim.html">trim</a></code>,
+<code><a href="trim.html">trim</a></code>; <code><a 
href="unbase64.html">unbase64</a></code>,
+<code><a href="unbase64.html">unbase64</a></code>; <code><a 
href="upper.html">upper</a></code>,
+<code><a href="upper.html">upper</a></code>
+</p>
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/log.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/log.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/log.html (added)
+++ spark/site/docs/1.5.0/api/R/log.html Fri Sep 18 16:25:35 2015
@@ -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: log</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 log {SparkR}"><tr><td>log 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>log</h2>
+
+<h3>Description</h3>
+
+<p>Computes the natural logarithm of the given value.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+log(x)
+</pre>
+
+
+<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="bin.html">bin</a></code>; <code><a href="cbrt.html">cbrt</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>; <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="ceil.html">ceil</a></code>, <code><a 
href="ceil.html">ceil</a></code>;
+<code><a href="conv.html">conv</a></code>, <code><a 
href="conv.html">conv</a></code>;
+<code><a href="cosh.html">cosh</a></code>; <code><a 
href="cos.html">cos</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="hex.html">hex</a></code>;
+<code><a href="hypot.html">hypot</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="pmod.html">pmod</a></code>,
+<code><a href="pmod.html">pmod</a></code>; <code><a 
href="rint.html">rint</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="shiftLeft.html">shiftLeft</a></code>;
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>;
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="shiftRight.html">shiftRight</a></code>;
+<code><a href="signum.html">signum</a></code>, <code><a 
href="signum.html">signum</a></code>,
+<code><a href="signum.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="toDegrees.html">toDegrees</a></code>;
+<code><a href="toRadians.html">toRadians</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>;
+<code><a href="unhex.html">unhex</a></code>, <code><a 
href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: log(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/log10.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/log10.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/log10.html (added)
+++ spark/site/docs/1.5.0/api/R/log10.html Fri Sep 18 16:25:35 2015
@@ -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: log10</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 log10 {SparkR}"><tr><td>log10 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>log10</h2>
+
+<h3>Description</h3>
+
+<p>Computes the logarithm of the given value in base 10.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+log10(x)
+</pre>
+
+
+<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="bin.html">bin</a></code>; <code><a href="cbrt.html">cbrt</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>; <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="ceil.html">ceil</a></code>, <code><a 
href="ceil.html">ceil</a></code>;
+<code><a href="conv.html">conv</a></code>, <code><a 
href="conv.html">conv</a></code>;
+<code><a href="cosh.html">cosh</a></code>; <code><a 
href="cos.html">cos</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="hex.html">hex</a></code>;
+<code><a href="hypot.html">hypot</a></code>, <code><a 
href="hypot.html">hypot</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="pmod.html">pmod</a></code>; <code><a 
href="rint.html">rint</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="shiftLeft.html">shiftLeft</a></code>;
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>;
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="shiftRight.html">shiftRight</a></code>;
+<code><a href="signum.html">signum</a></code>, <code><a 
href="signum.html">signum</a></code>,
+<code><a href="signum.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="toDegrees.html">toDegrees</a></code>;
+<code><a href="toRadians.html">toRadians</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>;
+<code><a href="unhex.html">unhex</a></code>, <code><a 
href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: log10(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<a href="00Index.html">Index</a>]</div>
+</body></html>

Added: spark/site/docs/1.5.0/api/R/log1p.html
URL: 
http://svn.apache.org/viewvc/spark/site/docs/1.5.0/api/R/log1p.html?rev=1703900&view=auto
==============================================================================
--- spark/site/docs/1.5.0/api/R/log1p.html (added)
+++ spark/site/docs/1.5.0/api/R/log1p.html Fri Sep 18 16:25:35 2015
@@ -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: log1p</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 log1p {SparkR}"><tr><td>log1p 
{SparkR}</td><td style="text-align: right;">R Documentation</td></tr></table>
+
+<h2>log1p</h2>
+
+<h3>Description</h3>
+
+<p>Computes the natural logarithm of the given value plus one.
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>
+## S4 method for signature 'Column'
+log1p(x)
+</pre>
+
+
+<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="bin.html">bin</a></code>; <code><a href="cbrt.html">cbrt</a></code>,
+<code><a href="cbrt.html">cbrt</a></code>; <code><a 
href="ceil.html">ceil</a></code>,
+<code><a href="ceil.html">ceil</a></code>, <code><a 
href="ceil.html">ceil</a></code>;
+<code><a href="conv.html">conv</a></code>, <code><a 
href="conv.html">conv</a></code>;
+<code><a href="cosh.html">cosh</a></code>; <code><a 
href="cos.html">cos</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="hex.html">hex</a></code>;
+<code><a href="hypot.html">hypot</a></code>, <code><a 
href="hypot.html">hypot</a></code>;
+<code><a href="log10.html">log10</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="pmod.html">pmod</a></code>; <code><a 
href="rint.html">rint</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="shiftLeft.html">shiftLeft</a></code>;
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>,
+<code><a href="shiftRightUnsigned.html">shiftRightUnsigned</a></code>;
+<code><a href="shiftRight.html">shiftRight</a></code>, <code><a 
href="shiftRight.html">shiftRight</a></code>;
+<code><a href="signum.html">signum</a></code>, <code><a 
href="signum.html">signum</a></code>,
+<code><a href="signum.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="toDegrees.html">toDegrees</a></code>;
+<code><a href="toRadians.html">toRadians</a></code>, <code><a 
href="toRadians.html">toRadians</a></code>;
+<code><a href="unhex.html">unhex</a></code>, <code><a 
href="unhex.html">unhex</a></code>
+</p>
+
+
+<h3>Examples</h3>
+
+<pre><code class="r">## Not run: log1p(df$c)
+</code></pre>
+
+
+<hr /><div style="text-align: center;">[Package <em>SparkR</em> version 1.5.0 
<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