R programming with swirl

wordcloud

What is swirl

swirl is an R package that enables users to learn R programming interactively in R console. In my opinion, this is the best way to learn R because it's very user friendly and also teaches you data science along with R.

Website: https://swirlstats.com/

[^top]

Installing swirl

R>=3.1.0 is required to install swirl. R Studio is recommended.

In R console, type

install.packages("swirl")

Check your installation:

packageVersion("swirl")

Installing swirl

[^top]

Installing a course in swirl

Load swirl library.

library(swirl)

Install "R Programming" course.

install_from_swirl("R Programming")

Here is a list of all swirl courses http://swirlstats.com/scn/title.html

Installing course

[^top]

Last updated 2020-10-01 18:05:14.907413 IST

Comments