From 05c1179bf5ae3d331d027c43a1f2c612c64f772d Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 3 May 2022 15:41:49 -0700 Subject: [PATCH] chore: clean up readme (#7) --- README.md | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index e76efb7..f89ce47 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,3 @@ -### Assignment +# Sea Level Predictor -You will anaylize a dataset of the global average sea level change since 1880. You will use the data to predict the sea level change through year 2050. - -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 `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". - -Unit tests are written for you under `test_module.py`. - -### Development - -For development, you can use `main.py` to test your functions. Click the "run" button and `main.py` will run. - -### Testing - -We imported the tests from `test_module.py` to `main.py` for your convenience. The tests will run automatically whenever you hit the "run" button. - -### Submitting - -Copy your project's URL and submit it to freeCodeCamp. - -### Data Source -Global Average Absolute Sea Level Change, 1880-2014 from the US Environmental Protection Agency using data from CSIRO, 2015; NOAA, 2015. -https://datahub.io/core/sea-level-rise +This is the boilerplate for the Sea Level Predictor project. Instructions for building your project can be found at https://www.freecodecamp.org/learn/data-analysis-with-python/data-analysis-with-python-projects/sea-level-predictor