From 9c2fdc7ee0ad47ea48e5e2a71e0d51304990842c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Mon, 22 Feb 2021 11:47:39 +0000 Subject: [PATCH] Update chapter references --- data-import.Rmd | 2 +- data-transform.Rmd | 2 +- data-visualize.Rmd | 2 +- whole-game.Rmd | 13 ++++++++----- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/data-import.Rmd b/data-import.Rmd index c107952..1f8d8fc 100644 --- a/data-import.Rmd +++ b/data-import.Rmd @@ -1,4 +1,4 @@ -# Data import +# Data import {#data-import} diff --git a/data-transform.Rmd b/data-transform.Rmd index 8575335..870b143 100644 --- a/data-transform.Rmd +++ b/data-transform.Rmd @@ -1,4 +1,4 @@ -# Data transformation {#transform} +# Data transformation {#data-transform} ## Introduction diff --git a/data-visualize.Rmd b/data-visualize.Rmd index 8c7962f..386f45e 100644 --- a/data-visualize.Rmd +++ b/data-visualize.Rmd @@ -1,4 +1,4 @@ -# Data visualisation +# Data visualisation {#data-visualisation} ## Introduction diff --git a/whole-game.Rmd b/whole-game.Rmd index a783937..6cbc884 100644 --- a/whole-game.Rmd +++ b/whole-game.Rmd @@ -13,14 +13,17 @@ knitr::include_graphics("diagrams/data-science-explore.png") In this part of the book you will learn some useful tools that have an immediate payoff: - 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. + In Chapter \@ref(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. +- Visualisation alone is typically not enough, so in Chapter \@ref(data-transform) you'll learn the key verbs that allow you to select important variables, filter out key observations, create new variables, and compute summaries. -- Finally, in [exploratory data analysis], you'll combine visualisation and transformation with your curiosity and scepticism to ask and answer interesting questions about data. +- Before you can transform and visualise your data, you need to first get your data into R. + In Chapter \@ref(data-import) you'll learn the basics of getting plain-text rectangular data into R. -Modelling is an important part of the exploratory process, but you don't have the skills to effectively learn or apply it yet. +- Finally, in Chapter \@ref(exploratory-data-analysis), you'll combine visualisation and transformation with your curiosity and scepticism to ask and answer interesting questions about data. + +Modelling is an important part of the exploratory process, but you don't have the skills to effectively learn or apply it yet so we will not cover it in this part. 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. +In Chapters \@ref(workflow-basics), \@ref(workflow-scripts), and \@ref(workflow-projects), you'll learn good workflow 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.