r4ds/explore.Rmd

30 lines
2.0 KiB
Plaintext
Raw Normal View History

2016-04-27 15:04:29 +08:00
# (PART) Explore {-}
2016-04-21 21:01:34 +08:00
2016-08-18 20:55:19 +08:00
# Introduction {#explore-intro}
2016-02-12 06:31:34 +08:00
2016-10-05 00:08:12 +08:00
The goal of the first part of this book is to get you up to speed with the basic tools of __data exploration__ as quickly as possible. Data exploration is the art of looking at your data, rapidly generating hypotheses, quickly testing them, then repeating again and again and again. The goal of data exploration is to generate many promising leads that you can later explore in more depth.
2016-07-19 22:39:00 +08:00
```{r echo = FALSE, out.width = "75%"}
knitr::include_graphics("diagrams/data-science-explore.png")
```
2016-10-05 00:08:12 +08:00
In this part of the book you will learn some useful tools that have an immediate payoff:
2016-05-19 00:57:20 +08:00
2016-08-22 22:57:17 +08:00
* Visualisation is a great place to start with R programming, because the
payoff is so clear: you get to make elegant and informative plots that help
you understand data. In [data visualisation] you'll dive into visualisation,
learning the basic structure of a ggplot2 plot, and powerful techniques for
turning data into plots.
* Visualisation alone is typically not enough, so in [data transformation]
you'll learn the key verbs that allow you to select important variables,
filter out key observations, create new variables, and compute summaries.
2016-07-19 22:39:00 +08:00
2016-08-22 22:57:17 +08:00
* Finally, in [exploratory data analysis], you'll combine visualisation and
transformation with your curiosity and scepticism to ask and answer
interesting questions about data.
2016-05-19 00:57:20 +08:00
Modelling is an important part of the exploratory process, but you don't have the skills to effectively learn or apply it yet. We'll come back to it in [modelling](#model-intro), once you're better equipped with more data wrangling and programming tools.
2016-08-22 22:57:17 +08:00
Nestled among these three chapters that teach you the tools of exploration are three chapters that focus on your R workflow. In [workflow: basics], [workflow: scripts], and [workflow: projects] you'll learn good practices for writing and organising your R code. These will set you up for success in the long run, as they'll give you the tools to stay organised when you tackle real projects.