From 469765a7878452fee26818f9f072bf6015452ce2 Mon Sep 17 00:00:00 2001 From: malcalakovalski Date: Tue, 5 Sep 2023 17:43:57 -0400 Subject: [PATCH] Remove package images --- docs/04_lesson.html | 13 ++----------- docs/search.json | 2 +- intro_series_book/04_lesson.qmd | 7 +------ 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/docs/04_lesson.html b/docs/04_lesson.html index 66dd3e4..6db4d9d 100644 --- a/docs/04_lesson.html +++ b/docs/04_lesson.html @@ -258,16 +258,10 @@

4  4.1 Review

@@ -322,7 +316,6 @@

} } -

@@ -410,7 +403,6 @@

4.6.4 Exercise

Step 1: Pull up the documentation for read_csv and take a look of some of the function arguments. There are a lot! You don’t need to know how everything works, but it’s good to have an idea of some of the options available to you.

-

@@ -436,7 +428,6 @@

4.7.2 Exercise

Step 1: Use read_excel() to load in the table on the “Refinance Data April 2019” sheet into a data frame called refinances.

-

diff --git a/docs/search.json b/docs/search.json index 17a12ed..7229abd 100644 --- a/docs/search.json +++ b/docs/search.json @@ -256,7 +256,7 @@ "href": "04_lesson.html#review", "title": "4  Data Import", "section": "4.1 Review", - "text": "4.1 Review\n\nWhat is tidy data?\n\nArtwork by @allison_horst\nWhat is a file path?\nWhat is an R Studio Project?\n\n\n\nArtwork by @allison_horst\n\n\nStay DRY: if you find yourself copying and pasting chunks of code, write a function instead.\nWriting functions that use capabilities of the tidyverse can be tricky due to something called Nonstandard Evaluation - feel free to ask any of us for help!" + "text": "4.1 Review\n\nWhat is tidy data?\n\nArtwork by @allison_horst\nWhat is a file path?\nWhat is an R Studio Project?\nStay DRY: if you find yourself copying and pasting chunks of code, write a function instead.\nWriting functions that use capabilities of the tidyverse can be tricky due to something called Nonstandard Evaluation - feel free to ask any of us for help!" }, { "objectID": "04_lesson.html#motivation", diff --git a/intro_series_book/04_lesson.qmd b/intro_series_book/04_lesson.qmd index bac006f..8ef4063 100644 --- a/intro_series_book/04_lesson.qmd +++ b/intro_series_book/04_lesson.qmd @@ -38,7 +38,7 @@ library(arrow) - What is tidy data? - ![](www/images/what_is_tidydata.jpeg){width="396"} + ![](www/images/what_is_tidydata.jpeg){width="80%"} Artwork by \@allison_horst @@ -46,8 +46,6 @@ library(arrow) - What is an R Studio Project? - ![Artwork by \@allison_horst](www/images/cracked_setwd.png){width="291"} - - Stay DRY: if you find yourself copying and pasting chunks of code, write a function instead. - Writing functions that use capabilities of the `tidyverse` can be tricky due to something called Nonstandard Evaluation - feel free to ask any of us for help! @@ -108,7 +106,6 @@ download_data <- function(url, path) { } ``` - ## The `readr` Package @@ -216,7 +213,6 @@ Luckily `read_csv()` and its friends have a lot of built in arguments to help de **Step 1:** Pull up the documentation for `read_csv` and take a look of some of the function arguments. There are a lot! You don't need to know how everything works, but it's good to have an idea of some of the options available to you. - ## The `readxl` Package @@ -249,7 +245,6 @@ Note that the `readxl` package only provides functionality to, as the name impli **Step 1:** Use `read_excel()` to load in the table on the "Refinance Data April 2019" sheet into a data frame called `refinances`. - ## The `haven` Package