Drop jekyll markdown
This commit is contained in:
parent
56b5775bcb
commit
9e2fc73aac
|
@ -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).
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Data structures
|
||||
---
|
||||
|
||||
# Data structures
|
||||
|
||||
Might be quite brief.
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Databases
|
||||
---
|
||||
|
||||
# Databases
|
||||
|
||||
### Two-table verbs
|
||||
|
|
|
@ -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).
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Expressing yourself in code
|
||||
---
|
||||
|
||||
# Expressing yourself in code
|
||||
|
||||
```{r, include = FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Data import
|
||||
---
|
||||
|
||||
# Data import
|
||||
|
||||
```{r, include = FALSE}
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
---
|
||||
layout: default
|
||||
title: Welcome
|
||||
|
||||
knit: "bookdown::render_book"
|
||||
output:
|
||||
bookdown::html_chapters:
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
title: Introduction
|
||||
layout: default
|
||||
---
|
||||
|
||||
# Introduction
|
||||
|
||||
```{r setup-intro, include = FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Lists
|
||||
---
|
||||
|
||||
# Lists
|
||||
|
||||
```{r setup-lists, include=FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Model assessment
|
||||
---
|
||||
|
||||
# Model assessment
|
||||
|
||||
```{r setup-model, include=FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Model visualisation
|
||||
---
|
||||
|
||||
# Model visualisation
|
||||
|
||||
Gap minder
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Save time by programming
|
||||
---
|
||||
|
||||
# Programming
|
||||
|
||||
Computer-human communication matters.
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Relational data
|
||||
---
|
||||
|
||||
# Relational data {#relation-data}
|
||||
|
||||
```{r setup-relation, include = FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: R Markdown
|
||||
---
|
||||
|
||||
# R Markdown
|
||||
|
||||
Recommendations for learning more about communication:
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Robust code
|
||||
---
|
||||
|
||||
```{r, include = FALSE}
|
||||
library(magrittr)
|
||||
```
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Strings
|
||||
---
|
||||
|
||||
# Strings
|
||||
|
||||
```{r setup-strings, include = FALSE}
|
||||
|
|
5
tidy.Rmd
5
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
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Transform
|
||||
---
|
||||
|
||||
# Data transformation {#transform}
|
||||
|
||||
```{r setup-transform, include = FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Understand your data
|
||||
---
|
||||
|
||||
# Understand your data
|
||||
|
||||
Data poses a cognitive problem; Data comprehension is a skill.
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Variation
|
||||
---
|
||||
|
||||
# Variation
|
||||
|
||||
```{r, include = FALSE}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
---
|
||||
layout: default
|
||||
title: Visualize
|
||||
---
|
||||
|
||||
# Data visualisation
|
||||
|
||||
```{r setup-visualise, include = FALSE}
|
||||
|
|
Loading…
Reference in New Issue