diff --git a/communicate.Rmd b/communicate.Rmd index 3a6bb3e..7bae4b2 100644 --- a/communicate.Rmd +++ b/communicate.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Communicate your work ---- - # Communicate your work Reproducible, literate code is the data science equivalent of the Scientific Report (i.e, Intro, Methods and materials, Results, Discussion). diff --git a/contribute.rmd b/contribute.rmd index 14891f1..8920eec 100644 --- a/contribute.rmd +++ b/contribute.rmd @@ -1,8 +1,3 @@ ---- -title: Contributing -layout: default ---- - # Contributing This book has been developed in the open, and it wouldn't be nearly as good diff --git a/data-structures.Rmd b/data-structures.Rmd index c450bfb..06c0b80 100644 --- a/data-structures.Rmd +++ b/data-structures.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Data structures ---- - # Data structures Might be quite brief. diff --git a/databases.Rmd b/databases.Rmd index 19c1015..6c950ce 100644 --- a/databases.Rmd +++ b/databases.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Databases ---- - # Databases ### Two-table verbs diff --git a/datetimes.Rmd b/datetimes.Rmd index a3411e3..8fe64ae 100644 --- a/datetimes.Rmd +++ b/datetimes.Rmd @@ -1,9 +1,3 @@ ---- -layout: default -title: Dates and times ---- - # Dates and times - If you have trouble remembering these abbreviations, check out the [strptimer package](https://cran.r-project.org/web/packages/strptimer/vignettes/strptimer.html). diff --git a/functions.Rmd b/functions.Rmd index 021490d..929fb58 100644 --- a/functions.Rmd +++ b/functions.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Expressing yourself in code ---- - # Expressing yourself in code ```{r, include = FALSE} diff --git a/import.Rmd b/import.Rmd index da6a6f6..edf26cc 100644 --- a/import.Rmd +++ b/import.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Data import ---- - # Data import ```{r, include = FALSE} diff --git a/index.rmd b/index.rmd index 02d6d2d..248acd5 100644 --- a/index.rmd +++ b/index.rmd @@ -1,7 +1,4 @@ --- -layout: default -title: Welcome - knit: "bookdown::render_book" output: bookdown::html_chapters: diff --git a/intro.Rmd b/intro.Rmd index 7dda0ae..cbd3d77 100644 --- a/intro.Rmd +++ b/intro.Rmd @@ -1,8 +1,3 @@ ---- -title: Introduction -layout: default ---- - # Introduction ```{r setup-intro, include = FALSE} diff --git a/lists.Rmd b/lists.Rmd index a85ce52..04b1e1b 100644 --- a/lists.Rmd +++ b/lists.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Lists ---- - # Lists ```{r setup-lists, include=FALSE} diff --git a/model-assess.Rmd b/model-assess.Rmd index 4502580..48ebb0e 100644 --- a/model-assess.Rmd +++ b/model-assess.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Model assessment ---- - # Model assessment ```{r setup-model, include=FALSE} diff --git a/model-vis.Rmd b/model-vis.Rmd index afcfcbc..ac429e7 100644 --- a/model-vis.Rmd +++ b/model-vis.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Model visualisation ---- - # Model visualisation Gap minder diff --git a/model.Rmd b/model.Rmd index e9763ef..a1f1248 100644 --- a/model.Rmd +++ b/model.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Model ---- - # Model A model is a function that summarizes how the values of one variable vary in response to the values of other variables. Models play a large role in hypothesis testing and prediction, but for the moment you should think of models just like you think of statistics. A statistic summarizes a *distribution* in a way that is easy to understand; and a model summarizes *covariation* in a way that is easy to understand. In other words, a model is just another way to describe data. diff --git a/program.Rmd b/program.Rmd index 070ad92..041395f 100644 --- a/program.Rmd +++ b/program.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Save time by programming ---- - # Programming Computer-human communication matters. diff --git a/relational-data.Rmd b/relational-data.Rmd index 31c1cf2..8262ad0 100644 --- a/relational-data.Rmd +++ b/relational-data.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Relational data ---- - # Relational data {#relation-data} ```{r setup-relation, include = FALSE} diff --git a/rmarkdown.Rmd b/rmarkdown.Rmd index 58c0809..4407df7 100644 --- a/rmarkdown.Rmd +++ b/rmarkdown.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: R Markdown ---- - # R Markdown Recommendations for learning more about communication: diff --git a/robust-code.Rmd b/robust-code.Rmd index 928eafd..29750f2 100644 --- a/robust-code.Rmd +++ b/robust-code.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Robust code ---- - ```{r, include = FALSE} library(magrittr) ``` diff --git a/science.Rmd b/science.Rmd index e73002b..8aacef7 100644 --- a/science.Rmd +++ b/science.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Do science with data ---- - # Do science with data The scientific method guides data science. Data science solves known problems with the scientific method. diff --git a/shiny.Rmd b/shiny.Rmd index 1d857ed..578d0bd 100644 --- a/shiny.Rmd +++ b/shiny.Rmd @@ -1,6 +1 @@ ---- -layout: default -title: Shiny ---- - # Shiny diff --git a/strings.Rmd b/strings.Rmd index 23a293f..572e803 100644 --- a/strings.Rmd +++ b/strings.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Strings ---- - # Strings ```{r setup-strings, include = FALSE} diff --git a/tidy.Rmd b/tidy.Rmd index 96fee4f..ee2d883 100644 --- a/tidy.Rmd +++ b/tidy.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Tidy data ---- - # Tidy data > "Tidy datasets are all alike but every messy dataset is messy in its diff --git a/transform.Rmd b/transform.Rmd index 65ad699..47a249a 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Transform ---- - # Data transformation {#transform} ```{r setup-transform, include = FALSE} diff --git a/understand.Rmd b/understand.Rmd index 0132b24..a41070a 100644 --- a/understand.Rmd +++ b/understand.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Understand your data ---- - # Understand your data Data poses a cognitive problem; Data comprehension is a skill. diff --git a/variation.Rmd b/variation.Rmd index f1bd0d0..82f3f01 100644 --- a/variation.Rmd +++ b/variation.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Variation ---- - # Variation ```{r, include = FALSE} diff --git a/visualize.Rmd b/visualize.Rmd index 1c8181f..1b2923a 100644 --- a/visualize.Rmd +++ b/visualize.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Visualize ---- - # Data visualisation ```{r setup-visualise, include = FALSE} diff --git a/work.Rmd b/work.Rmd index a9e4072..c8ccd00 100644 --- a/work.Rmd +++ b/work.Rmd @@ -1,8 +1,3 @@ ---- -layout: default -title: Work with your data ---- - # Work with your data With data, the relationships between values matter as much as the values themselves. Tidy data encodes those relationships.