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.
- Host: GitHub
- URL: https://github.com/teebusch/r-intro
- Owner: Teebusch
- Created: 2021-07-17T16:30:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-10T14:54:57.000Z (over 4 years ago)
- Last Synced: 2025-01-24T07:11:28.147Z (about 1 year ago)
- Topics: r, tidyverse, tutorial, workshop
- Language: R
- Homepage: https://teebusch.github.io/r-intro/
- Size: 5.21 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 10 Reasons to Learn R

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 **

## 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
```