Skip to content

Commit

Permalink
Add new import part
Browse files Browse the repository at this point in the history
  • Loading branch information
mine-cetinkaya-rundel committed Feb 22, 2021
1 parent 9c2fdc7 commit 6d977a5
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 0 deletions.
7 changes: 7 additions & 0 deletions _bookdown.yml
Expand Up @@ -28,6 +28,13 @@ rmd_files: [
"factors.Rmd",
"datetimes.Rmd",

"import.Rmd",
"import-rectangular.Rmd",
"import-spreadsheets.Rmd",
"import-databases.Rmd",
"import-webscrape.Rmd",
"import-other.Rmd",

"program.Rmd",
"pipes.Rmd",
"functions.Rmd",
Expand Down
3 changes: 3 additions & 0 deletions import-databases.Rmd
@@ -0,0 +1,3 @@
# Databases {#import-databases}

<!--# TO DO: Write chapter. -->
3 changes: 3 additions & 0 deletions import-other.Rmd
@@ -0,0 +1,3 @@
# Other types of data {#import-other}

<!--# TO DO: Write chapter. -->
3 changes: 3 additions & 0 deletions import-rectangular.Rmd
@@ -0,0 +1,3 @@
# Rectangular data {#import-rectangular}

<!--# TO DO: Write chapter. -->
3 changes: 3 additions & 0 deletions import-spreadsheets.Rmd
@@ -0,0 +1,3 @@
# Spreadsheets {#import-spreadsheets}

<!--# TO DO: Write chapter. -->
3 changes: 3 additions & 0 deletions import-webscrape.Rmd
@@ -0,0 +1,3 @@
# Web scraping {#import-webscrape}

<!--# TO DO: Write chapter. -->
21 changes: 21 additions & 0 deletions import.Rmd
@@ -0,0 +1,21 @@
# (PART) Import {.unnumbered}

# Introduction {#import-intro}

In this part of the book, you'll learn how to get your into R.
We'll focus on plain-text rectangular formats, spreadsheets, databases, and web data.

<!--# TO DO: Decide if a diagram is needed, see wrangle-intro for reference. -->

This part of the book proceeds as follows:

- In Chapter \@ref(import-rectangular), you'll learn how to get plain-text data in rectangular formats from disk and into R.

- In Chapter \@ref(import-spreadsheets), you'll learn how to get data from Excel spreadsheets and Google Sheets into R.

- In Chapter \@ref(import-databases), you'll learn about getting data into R from databases.
<!--# TO DO: List which types of databases. -->

- In Chapter \@ref(import-webscrape), you'll learn about harvesting data off the web and getting it into R.

- We'll close up the part with a brief discussion on other types of data and pointers for how to get them into R in Chapter \@ref(import-other).

0 comments on commit 6d977a5

Please sign in to comment.