Open bpiontek-asu opened 5 hours ago
Hi @bpiontek-asu, It looks like 'hide' section of your code is missing a closing quote.
I know you mentioned that the error still appeared when removing it as well so is it possible you have two sections missing the closing quote?
Thanks so much! I thought that the error only applied to the first 46 lines, and there wasn't missing closing quote in that section, so I hadn't looked further, but found my issue way down around line 600! Thank you!
When I attempt to knit my Lab 05 .rmd file, I get the following error:
From this, I would assume that the error is occurring somewhere in the first 46 lines of my code, and likely specifically in the #Libraries / #LoadPackages section, but I'm not able to determine where. My code for the first 46 lines is as follows:
--- title: "Measuring the Tax Credit Interventions - East North Central Division" author: "Beth Piontek" date: "
r Sys.Date()`" output: github_document: toc: true toc_depth: 3 preserve_yaml: true rmdformats::downcute: toc_depth: 3 self_contained: true thumbnails: false lightbox: true gallery: false highlight: "tango" code_folding: show always_allow_html: true knit: (function(inputFile, encoding) { rmarkdown::render(inputFile, encoding = encoding, output_format = "all") })Libraries
`
I have pulled up https://yihui.org/knitr/options/ as suggested in the error, but have not been able to determine my issue.
I've also tried removing the ", warning=FALSE, message=FALSE, results='hide'" section of my code (line 30), but that did not help.
I seem to be able to run my code just fine in the rmd file, and my renv::status() shows no issues (project in a consistent state).
Can you help me figure out what my issue is?