We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get this error:
Output created: 03-data-manip-basics.html Error: C stack usage 8678916 is too close to the limit Execution halted
when I try to run the tutorial below
--- title: "Data Manipulation Basics" output: tutor::tutorial runtime: shiny_prerendered --- ```{r setup, include=FALSE} library(tidyverse) library(nycflights13) ``` what's going on? ```{r} flights ```
I'm not sure what is happening, but I can avoid the error it in two ways. If I do either of these things, the tutorial runs without error:
(sensibly) show only the head of flights (but notice that flights is a tibble, so it displays concisely anyhow)
flights
--- title: "Data Manipulation Basics" output: tutor::tutorial runtime: shiny_prerendered --- ```{r setup, include=FALSE} library(tidyverse) library(nycflights13) ``` what's going on? ```{r} head(flights) ```
Remove the ' in the line before the last code chunk:
'
--- title: "Data Manipulation Basics" output: tutor::tutorial runtime: shiny_prerendered --- ```{r setup, include=FALSE} library(tidyverse) library(nycflights13) ``` whats going on? ```{r} flights ```
The text was updated successfully, but these errors were encountered:
Thanks for the easy repro case. Fixed within rmarkdown
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I get this error:
when I try to run the tutorial below
I'm not sure what is happening, but I can avoid the error it in two ways. If I do either of these things, the tutorial runs without error:
(sensibly) show only the head of
flights
(but notice that flights is a tibble, so it displays concisely anyhow)Remove the
'
in the line before the last code chunk:The text was updated successfully, but these errors were encountered: