An open API service indexing awesome lists of open source software.

https://github.com/teebusch/r-intro

A brief hands-on introduction to R with RStudio, the Tidyverse, and RMarkdown.
https://github.com/teebusch/r-intro

r tidyverse tutorial workshop

Last synced: 11 months ago
JSON representation

A brief hands-on introduction to R with RStudio, the Tidyverse, and RMarkdown.

Awesome Lists containing this project

README

          

# 10 Reasons to Learn R

![Deploy book to Github
Pages](https://github.com/Teebusch/R-introduction/actions/workflows/deploy_bookdown.yml/badge.svg)

This book is a short hands-on introduction to R with the goal to help you decide whether
you should or should not learn it. **View it online at **

![](https://i.imgur.com/QThpLod.png)

## Content

- brief introduction to R
- Provide motivation for learning R or for not learning R
- Learn 10 cool things about R
- Hands-on mini data analysis demo to demonstrate the power of R
- Modern beginner-friendly R with [the Tidyverse](https://www.tidyverse.org/),
[RStudio](https://www.rstudio.com/products/rstudio/download/), and RMarkdown

### Take-aways :takeout_box:

- Is R for you?
- Basic data wrangling, modeling, visualization, and reproducible reporting
- How to learn more?

### Instructions for building locally

- Clone this repository,
- open it in RStudio
- In R, run:

```r
if (!require("renv")) install.packages("renv")
renv::restore()
bookdown::gitbook() # Or Cmd + Shift + B
```