Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.26 KB

Swirl-Courses.md

File metadata and controls

63 lines (44 loc) · 1.26 KB

Swirl Courses

ElisaRMA 3/24/2021

According to the swirl website “swirl is a software package for the R programming language that turns the R console into an interactive learning environment. Users receive immediate feedback as they are guided through self-paced lessons in data science and R programming.”

More information can be found on https://swirlstats.com

Install swirl

Swirl can be installed using the install.packages function

install.packages("swirl")

To install any course within swirl, load the package and then install the course

library(swirl)
install_from_swirl("course")

Swirl Courses - Data Science Specialization - Coursera:

From the 5 courses within the Data Science Specialization - Foundations using R, 3 courses had its respective course on swirl. The codes used to install each one are available below.

  1. R Programming
install_from_swirl("R Programming")
  1. Getting and Cleaning Data
install_from_swirl("Getting and Cleaning Data")
  1. Exploratory Data Analysis
install_from_swirl("Exploratory Data Analysis")
  1. Statistical Inference
install_from_swirl("Statistical Inference")
  1. Regression Models
install_from_swirl("Regression Models")