Introduction to R and Python

Learn how to set up R and RStudio on your machine. We will also demonstrate how to install R packages from CRAN, and install the tidyverse package.

Welcome

This is a demo tutorial. Compare it to the source code that made it.

for (x in 1:5) {
  print(x * 2)
}
for x in range(5):
  print(x * 2)