Polish wrangling opener a little

This commit is contained in:
Hadley Wickham 2022-06-20 10:02:37 -05:00
parent fe270b927b
commit 0705aceba7
1 changed files with 10 additions and 8 deletions

View File

@ -6,20 +6,22 @@
source("_common.R")
```
In this part of the book, you\'ll learn about data wrangling, the art of getting your data into R in a useful form for visualisation and modelling.
Data wrangling is very important: without it you can\'t work with your own data!
Wrangle encompasses three parts of the data science flow: importing, tidying, and transforming.
In this part of the book, you'll learn about data wrangling, the art of getting your data into R in a useful form for further work.
In some cases, this is a relatively simple application of a package that does data import.
But in more complex cases it encompasses both tidying and transformation as the native structure of the data might be quite far from the tidy rectangle you'd prefer to work with.
![](diagrams/data-science-wrangle.png)
This part of the book proceeds as follows:
- In [Chapter -@sec-import-rectangular], you'll learn how to get plain-text data in rectangular formats from disk and into R.
- In @sec-import-rectangular, you'll learn how to get plain-text data in rectangular formats from disk and into R.
- In [Chapter -@sec-import-spreadsheets], you'll learn how to get data from Excel spreadsheets and Google Sheets into R.
- In @sec-import-spreadsheets, you'll learn how to get data from Excel spreadsheets and Google Sheets into R.
- In [Chapter -@sec-import-databases], you'll learn about getting data into R from databases.
- In @sec-import-databases, you'll learn about getting data into R from databases.
- In [Chapter -@sec-import-webscrape], you'll learn about harvesting data off the web and getting it into R.
- In @sec-rectangle-data, you'll learn how to work with hierarchical data that includes deeply nested lists, as is often created we your raw data is in JSON.
- 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 -@sec-import-other].
- In @sec-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 @sec-import-other.