# Today, we used R to understand what a particular quadratic # growth curve looked like: > Time <- seq(0,5,.01) > Y <- .55 + 1.26*Time - .07*Time^2 > plot(Time, Y, type='l')