Skip to content

Commit

Permalink
Merge pull request #31 from UI-Research/manu
Browse files Browse the repository at this point in the history
Day 4 updates
  • Loading branch information
malcalakovalski authored Sep 5, 2023
2 parents 4c344a8 + 46b2854 commit 1ffa7b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/04_lesson.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ <h2 data-number="4.2" class="anchored" data-anchor-id="motivation"><span class="
<h2 data-number="4.3" class="anchored" data-anchor-id="packages"><span class="header-section-number">4.3</span> Packages</h2>
<p>We’ll be using three packages from the <code>tidyverse</code> for data import and export. These three should cover just about all of your use cases at Urban.</p>
<ul>
<li><code>readr</code> - for plain text files</li>
<li><code>readr</code> - for plain text files (<code>.csv</code>, <code>.tsv</code>)</li>
<li><code>readxl</code> - for Excel files (<code>.xlsx</code>, <code>.xls</code>)</li>
<li><code>haven</code> - for SAS (<code>.sas7bdat</code> + <code>.sas7bcat</code> files), SPSS (<code>.sav</code> files), and Stata (<code>.dta</code> files up to Stata version 17) formats</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/search.json
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"href": "04_lesson.html#packages",
"title": "4  Data Import",
"section": "4.3 Packages",
"text": "4.3 Packages\nWe’ll be using three packages from the tidyverse for data import and export. These three should cover just about all of your use cases at Urban.\n\nreadr - for plain text files\nreadxl - for Excel files (.xlsx, .xls)\nhaven - for SAS (.sas7bdat + .sas7bcat files), SPSS (.sav files), and Stata (.dta files up to Stata version 17) formats\n\nOne note - while all three packages are installed with the tidyverse, only readr is loaded when you run library(tidyverse) in your R session. The other packages must be loaded separately."
"text": "4.3 Packages\nWe’ll be using three packages from the tidyverse for data import and export. These three should cover just about all of your use cases at Urban.\n\nreadr - for plain text files (.csv, .tsv)\nreadxl - for Excel files (.xlsx, .xls)\nhaven - for SAS (.sas7bdat + .sas7bcat files), SPSS (.sav files), and Stata (.dta files up to Stata version 17) formats\n\nOne note - while all three packages are installed with the tidyverse, only readr is loaded when you run library(tidyverse) in your R session. The other packages must be loaded separately."
},
{
"objectID": "04_lesson.html#primary-functions",
Expand Down
2 changes: 1 addition & 1 deletion intro_series_book/04_lesson.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ library(arrow)

We'll be using three packages from the `tidyverse` for data import and export. These three should cover just about all of your use cases at Urban.

- `readr` - for plain text files
- `readr` - for plain text files (`.csv`, `.tsv`)
- `readxl` - for Excel files (`.xlsx`, `.xls`)
- `haven` - for SAS (`.sas7bdat` + `.sas7bcat` files), SPSS (`.sav` files), and Stata (`.dta` files up to Stata version 17) formats

Expand Down

0 comments on commit 1ffa7b1

Please sign in to comment.