Slide 16
Slide 16 text
Try graph
> plot(c(5,5,4,3,3,4,1,1,1))
> x=c(5,4,3,3,1,4,1,1,1) # variable definition
> plot(x) # simple!
> plot(x,type="b") # What is this data?
> plot(x,type="b",ylim=c(6,1))
> yr=2010:2018
> plot(yr,x,type="b",ylim=c(6,1))
16