From 24bc837f6e77a2fc109e15fefbaf24da30169fd4 Mon Sep 17 00:00:00 2001 From: Clay Ford Date: Sun, 14 Jul 2024 11:00:23 -0400 Subject: [PATCH 1/2] Update project_rewrite.qmd remove eval = FALSE from chunk where get_raw_data() function is defined. --- project_rewrite.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_rewrite.qmd b/project_rewrite.qmd index a8fda89..dfc795b 100644 --- a/project_rewrite.qmd +++ b/project_rewrite.qmd @@ -187,7 +187,7 @@ This function simply wraps the lines from our original script that did the downloading and the cleaning. As a reminder, here are the lines from the original script, which I will then rewrite as a function: -```{r, eval = FALSE} +```{r} url <- "https://is.gd/1vvBAc" From 1c2074621376286d962bddf4adbcb316b321b013 Mon Sep 17 00:00:00 2001 From: Clay Ford Date: Sun, 14 Jul 2024 11:17:03 -0400 Subject: [PATCH 2/2] Update analyse_data.Rmd change "messages" to "message" in first code chunk --- rmds/analyse_data.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmds/analyse_data.Rmd b/rmds/analyse_data.Rmd index c0bc5fd..bd215ff 100644 --- a/rmds/analyse_data.Rmd +++ b/rmds/analyse_data.Rmd @@ -4,7 +4,7 @@ author: "Bruno Rodrigues" date: "`r Sys.Date()`" --- -```{r, messages = FALSE} +```{r, message = FALSE} library(dplyr) library(ggplot2) library(purrr)