From c35e9d25c060a806483977bc8b9840e23c7b64f4 Mon Sep 17 00:00:00 2001 From: Nabeel Raza <61087524+nabeelraza-7@users.noreply.github.com> Date: Mon, 19 Apr 2021 20:58:01 +0500 Subject: [PATCH] Fixing typo: scipi should be scipy (#5) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ff70c2..e76efb7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ You will anaylize a dataset of the global average sea level change since 1880. Y Use the data to complete the following tasks: * Use Pandas to import the data from `epa-sea-level.csv`. * Use matplotlib to create a scatter plot using the "Year" column as the x-axis and the "CSIRO Adjusted Sea Level" column as the y-axix. -* Use the `linregress` function from `scipi.stats` to get the slope and y-intercept of the line of best fit. Plot the line of best fit over the top of the scatter plot. Make the line go through the year 2050 to predict the sea level rise in 2050. +* Use the `linregress` function from `scipy.stats` to get the slope and y-intercept of the line of best fit. Plot the line of best fit over the top of the scatter plot. Make the line go through the year 2050 to predict the sea level rise in 2050. * Plot a new line of best fit just using the data from year 2000 through the most recent year in the dataset. Make the line also go through the year 2050 to predict the sea level rise in 2050 if the rate of rise continues as it has since the year 2000. * The x label should be "Year", the y label should be "Sea Level (inches)", and the title should be "Rise in Sea Level".