3 A Review of Statistics using R
This section reviews important statistical concepts:
Estimation of unknown population parameters
Hypothesis testing
Confidence intervals
These methods are heavily used in econometrics. We will discuss them in the simple context of inference about an unknown population mean and discuss several applications in R. These R applications rely on the following packages which are not part of the base version of R:
readxl - allows to import data from Excel to R.
dplyr - provides a flexible grammar for data manipulation.
MASS - a collection of functions for applied statistics.
Make sure these are installed before you go ahead and try to replicate the examples. The safest way to do so is by checking whether the following code chunk executes without any errors.
library(dplyr)
library(MASS)
library(readxl)