Formulas

Type some text bold text add a formula to display \(\mu=5\) \(\mu=10\)

\(\mu \doteq \mu _{0}\)

x<-c(1,2,3)
y<-c(4,5,6)
dat<-data.frame(x,y)
dat
##   x y
## 1 1 4
## 2 2 5
## 3 3 6
dat$z<-x*y
dat
##   x y  z
## 1 1 4  4
## 2 2 5 10
## 3 3 6 18
plot(x,y)

## Equations