Created
February 11, 2023 02:35
-
-
Save sysilviakim/03f266e4c542f0aade858df4dd629b82 to your computer and use it in GitHub Desktop.
Instruction on how to install swirl and swirl courses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Swirl and swirl lessons installation guide | |
install.packages("swirl") | |
library(swirl) # load the swirl package | |
## To start a swirl lesson, | |
## Type in `swirl()` | |
## These courses contain some useful lessons to do via swirl. | |
install_course_github("kosukeimai", "qss-swirl") | |
install_course("R Programming") | |
## To learn tidyverse, these are good places to start. | |
## Some may be redundant. | |
install_course_github("sysilviakim", "swirl-tidy") | |
install_course("Getting and Cleaning Data") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment