Skip to content

Commit

Permalink
tests: disable nesteed knit
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Jul 10, 2019
1 parent 591a9c9 commit 2a491e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ output:
library(sparklyr)
library(dplyr)

sc <- spark_connect(master = "local", version = "2.3)
sc <- spark_connect(master = "local", version = "2.3")
cars <- copy_to(sc, mtcars)
```

Expand Down Expand Up @@ -670,7 +670,7 @@ spark_disconnect(sc)

To knit this report, save the contents into a `report.Rmd` file and run `render()` from R. The output should look like the one in Figure \@(fig:visualize-analysis-communicate).

```{r analysis-communicate-rmd}
```{r analysis-communicate-rmd, eval=FALSE}
rmarkdown::render("report.Rmd")
```
```{r visualize-analysis-communicate, eval = TRUE, fig.width=10, fig.height=5, fig.cap='R Markdown HTML output', fig.align = 'center', echo = FALSE}
Expand Down
2 changes: 1 addition & 1 deletion rmds/report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ output:
library(sparklyr)
library(dplyr)
sc <- spark_connect(master = "local")
sc <- spark_connect(master = "local", version = "2.3")
cars <- copy_to(sc, mtcars)
```

Expand Down

0 comments on commit 2a491e3

Please sign in to comment.