The bar chart shows the sea level changes in 10-year intervals to essentially get another perspective on the trend.

##Creating a Simple Linear Regression Model
To quantify the trend in sea levels, we fit a simple linear regression model. This model helps us understand the relationship between time (year) and the change in sea levels.
##
## Call:
## lm(formula = mmfrom1993.2008average ~ year, data = sea_level)
##
## Residuals:
## Min 1Q Median 3Q Max
## -25.615 -10.317 -1.914 7.814 32.066
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -3.314e+03 5.202e+01 -63.70 <2e-16 ***
## year 1.657e+00 2.666e-02 62.18 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 13.16 on 141 degrees of freedom
## Multiple R-squared: 0.9648, Adjusted R-squared: 0.9646
## F-statistic: 3866 on 1 and 141 DF, p-value: < 2.2e-16
The model’s output shows a positive relationship between the year and sea level, indicating that sea levels are increasing over time.