You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: R/pkg/vignettes/sparkr-vignettes.Rmd
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,17 @@ vignette: >
27
27
limitations under the License.
28
28
-->
29
29
30
+
```{r setup, include=FALSE}
31
+
library(knitr)
32
+
opts_hooks$set(eval = function(options) {
33
+
# override eval to FALSE only on windows
34
+
if (.Platform$OS.type == "windows") {
35
+
options$eval = FALSE
36
+
}
37
+
options
38
+
})
39
+
```
40
+
30
41
## Overview
31
42
32
43
SparkR is an R package that provides a light-weight frontend to use Apache Spark from R. With Spark `r packageVersion("SparkR")`, SparkR provides a distributed data frame implementation that supports data processing operations like selection, filtering, aggregation etc. and distributed machine learning using [MLlib](http://spark.apache.org/mllib/).
0 commit comments