Drop jekyll markdown

This commit is contained in:
hadley 2016-02-17 16:26:32 +11:00
parent 56b5775bcb
commit 9e2fc73aac
26 changed files with 0 additions and 129 deletions

View File

@ -1,8 +1,3 @@
---
layout: default
title: Communicate your work
---
# 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). Reproducible, literate code is the data science equivalent of the Scientific Report (i.e, Intro, Methods and materials, Results, Discussion).

View File

@ -1,8 +1,3 @@
---
title: Contributing
layout: default
---
# Contributing # Contributing
This book has been developed in the open, and it wouldn't be nearly as good This book has been developed in the open, and it wouldn't be nearly as good

View File

@ -1,8 +1,3 @@
---
layout: default
title: Data structures
---
# Data structures # Data structures
Might be quite brief. Might be quite brief.

View File

@ -1,8 +1,3 @@
---
layout: default
title: Databases
---
# Databases # Databases
### Two-table verbs ### Two-table verbs

View File

@ -1,9 +1,3 @@
---
layout: default
title: Dates and times
---
# 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). If you have trouble remembering these abbreviations, check out the [strptimer package](https://cran.r-project.org/web/packages/strptimer/vignettes/strptimer.html).

View File

@ -1,8 +1,3 @@
---
layout: default
title: Expressing yourself in code
---
# Expressing yourself in code # Expressing yourself in code
```{r, include = FALSE} ```{r, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Data import
---
# Data import # Data import
```{r, include = FALSE} ```{r, include = FALSE}

View File

@ -1,7 +1,4 @@
--- ---
layout: default
title: Welcome
knit: "bookdown::render_book" knit: "bookdown::render_book"
output: output:
bookdown::html_chapters: bookdown::html_chapters:

View File

@ -1,8 +1,3 @@
---
title: Introduction
layout: default
---
# Introduction # Introduction
```{r setup-intro, include = FALSE} ```{r setup-intro, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Lists
---
# Lists # Lists
```{r setup-lists, include=FALSE} ```{r setup-lists, include=FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Model assessment
---
# Model assessment # Model assessment
```{r setup-model, include=FALSE} ```{r setup-model, include=FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Model visualisation
---
# Model visualisation # Model visualisation
Gap minder Gap minder

View File

@ -1,8 +1,3 @@
---
layout: default
title: Model
---
# 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. 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.

View File

@ -1,8 +1,3 @@
---
layout: default
title: Save time by programming
---
# Programming # Programming
Computer-human communication matters. Computer-human communication matters.

View File

@ -1,8 +1,3 @@
---
layout: default
title: Relational data
---
# Relational data {#relation-data} # Relational data {#relation-data}
```{r setup-relation, include = FALSE} ```{r setup-relation, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: R Markdown
---
# R Markdown # R Markdown
Recommendations for learning more about communication: Recommendations for learning more about communication:

View File

@ -1,8 +1,3 @@
---
layout: default
title: Robust code
---
```{r, include = FALSE} ```{r, include = FALSE}
library(magrittr) library(magrittr)
``` ```

View File

@ -1,8 +1,3 @@
---
layout: default
title: Do science with data
---
# Do science with data # Do science with data
The scientific method guides data science. Data science solves known problems with the scientific method. The scientific method guides data science. Data science solves known problems with the scientific method.

View File

@ -1,6 +1 @@
---
layout: default
title: Shiny
---
# Shiny # Shiny

View File

@ -1,8 +1,3 @@
---
layout: default
title: Strings
---
# Strings # Strings
```{r setup-strings, include = FALSE} ```{r setup-strings, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Tidy data
---
# Tidy data # Tidy data
> "Tidy datasets are all alike but every messy dataset is messy in its > "Tidy datasets are all alike but every messy dataset is messy in its

View File

@ -1,8 +1,3 @@
---
layout: default
title: Transform
---
# Data transformation {#transform} # Data transformation {#transform}
```{r setup-transform, include = FALSE} ```{r setup-transform, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Understand your data
---
# Understand your data # Understand your data
Data poses a cognitive problem; Data comprehension is a skill. Data poses a cognitive problem; Data comprehension is a skill.

View File

@ -1,8 +1,3 @@
---
layout: default
title: Variation
---
# Variation # Variation
```{r, include = FALSE} ```{r, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Visualize
---
# Data visualisation # Data visualisation
```{r setup-visualise, include = FALSE} ```{r setup-visualise, include = FALSE}

View File

@ -1,8 +1,3 @@
---
layout: default
title: Work with your data
---
# 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. With data, the relationships between values matter as much as the values themselves. Tidy data encodes those relationships.