Skip to content

Commit

Permalink
disable eval on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
felixcheung committed Aug 21, 2017
1 parent 28a6cca commit ba65d6e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions R/pkg/vignettes/sparkr-vignettes.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,17 @@ vignette: >
limitations under the License.
-->

```{r setup, include=FALSE}
library(knitr)
opts_hooks$set(eval = function(options) {
# override eval only on windows
if (.Platform$OS.type == "windows") {
options$eval = FALSE
}
options
})
```

## Overview

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/).
Expand Down

0 comments on commit ba65d6e

Please sign in to comment.