STAT1003 – Statistical Techniques
Dr. Emi Tanaka
Australian National University
These slides are best viewed on a modern browser like Google Chrome on a desktop or laptop. Some interactive components may require some time to fully load.



\(\sqrt{3}\)
\(|-3|\)
\(e^1 = e\)
\(\log_e (4) = \ln (4)\)
\(1 + 2 + 3 = \displaystyle\sum_{i = 1}^3 i\)

R has 7 packages:
base,datasets,graphics,grDevices,utils,stats,methods,collectively referred to as “Base R”, that are loaded automatically when you launch it.

Photo by Sara Kurfeß on Unsplash
praise) is on CRAN, you can install it by:install.packages() once!package::function() for without loading package:RStudio Desktop (or RStudio IDE)

Console or Source
?function or help(function) to look at the function documentationinstall.packages() to install a package (only once).library() to load a package.package::function() to use a function from a package without loading it.


STAT1003 – Statistical Techniques