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
{{ message }}
This repository has been archived by the owner on Feb 13, 2020. It is now read-only.
For anyone who's had problems knitting their RMarkdown files with intentional errors, you can either put {r error=TRUE} at the top of the code chunk you want to accept an error in, or
To accept errors throughout the entire document put
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, error = TRUE)
As a code chunk at the top of the file. This code chunk automatically comes up when you make a new RMarkdown file, just need to add the error=TRUE part
For anyone who's had problems knitting their RMarkdown files with intentional errors, you can either put {r error=TRUE} at the top of the code chunk you want to accept an error in, or
To accept errors throughout the entire document put
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, error = TRUE)
As a code chunk at the top of the file. This code chunk automatically comes up when you make a new RMarkdown file, just need to add the
error=TRUE
partShoutout to @ChadFibke and @j-schaub for helping me out with this one
The text was updated successfully, but these errors were encountered: