-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathindex.Rmd
More file actions
30 lines (24 loc) · 1.58 KB
/
index.Rmd
File metadata and controls
30 lines (24 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: "Data Science in R: A Gentle Introduction"
author: "James Scott"
date: "Last updated: August 2021"
site: bookdown::bookdown_site
output:
bookdown::gitbook
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: jgscott/DSGI
description: "A gentle introduction to data science in R."
always_allow_html: true
---
# Welcome! {-}
Hello and welcome! This online book is structured as a series of walk-through lessons in R that will have you doing real data science in no time. It covers both the core ideas of data science as well as the concrete software skills that will help you translate those ideas into practice.
Many of these lessons operate on the premise of "mimic first, understand later." That is, I'll introduce bits of R code that do something interesting and ask you to mimic them word for word to see what they do, without necessarily understanding the details at first. The theory here is that if you see the "what" first, you'll be more motivated to understand the "how" and "why".
This book also assumes you've never seen R before. If that's you, just start with Lesson 1: [Getting started in R]. If you've used R before, you might be better off skipping around using the Table of Contents in the sidebar. Either way, I hope you enjoy these lessons. And feel free to [drop me a line](mailto:james.scott@mccombs.utexas.edu) if you catch any errors or have any feedback!
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```