In this notebook we are going to learn…
x1<- c(1,4,5,5) x2<- c(4,5,5,7)
x1 - x2
## [1] -3 -1 0 -2
plot(x1,x2)