From 6d977a565a35f453e7e1dcb1c3ec1c9edb90fc8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Mon, 22 Feb 2021 12:28:26 +0000 Subject: [PATCH] Add new import part --- _bookdown.yml | 7 +++++++ import-databases.Rmd | 3 +++ import-other.Rmd | 3 +++ import-rectangular.Rmd | 3 +++ import-spreadsheets.Rmd | 3 +++ import-webscrape.Rmd | 3 +++ import.Rmd | 21 +++++++++++++++++++++ 7 files changed, 43 insertions(+) create mode 100644 import-databases.Rmd create mode 100644 import-other.Rmd create mode 100644 import-rectangular.Rmd create mode 100644 import-spreadsheets.Rmd create mode 100644 import-webscrape.Rmd create mode 100644 import.Rmd diff --git a/_bookdown.yml b/_bookdown.yml index c9c8466..e9fd408 100644 --- a/_bookdown.yml +++ b/_bookdown.yml @@ -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", diff --git a/import-databases.Rmd b/import-databases.Rmd new file mode 100644 index 0000000..eb5812d --- /dev/null +++ b/import-databases.Rmd @@ -0,0 +1,3 @@ +# Databases {#import-databases} + + diff --git a/import-other.Rmd b/import-other.Rmd new file mode 100644 index 0000000..35e3010 --- /dev/null +++ b/import-other.Rmd @@ -0,0 +1,3 @@ +# Other types of data {#import-other} + + diff --git a/import-rectangular.Rmd b/import-rectangular.Rmd new file mode 100644 index 0000000..924215f --- /dev/null +++ b/import-rectangular.Rmd @@ -0,0 +1,3 @@ +# Rectangular data {#import-rectangular} + + diff --git a/import-spreadsheets.Rmd b/import-spreadsheets.Rmd new file mode 100644 index 0000000..d4b3d9a --- /dev/null +++ b/import-spreadsheets.Rmd @@ -0,0 +1,3 @@ +# Spreadsheets {#import-spreadsheets} + + diff --git a/import-webscrape.Rmd b/import-webscrape.Rmd new file mode 100644 index 0000000..74b3669 --- /dev/null +++ b/import-webscrape.Rmd @@ -0,0 +1,3 @@ +# Web scraping {#import-webscrape} + + diff --git a/import.Rmd b/import.Rmd new file mode 100644 index 0000000..04db50b --- /dev/null +++ b/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. + + + +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. + + +- 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).