higor-gomes93 / project-I-pandas

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

portada

W2 Project - Data cleaning & wrangling

The goal of this project is to combine everything you have learned about data wrangling, cleaning, and manipulation with Pandas so you can see how it all works together. For this project, you will start with this messy data set Shark Attack. You will need to download it, import it, use your data wrangling skills to clean it up, prepare it to be analyzed, and then export it as a clean CSV data file. Some graphs to better understand the data will surely be useful!!

TO DO's

  1. Decide on hypothesis (or hypotheses)
  2. Explore the data and write down what you have found
    • you can use: df.describe(), df["column"], etc.
  3. Draw graphs that are insightful.
  4. Use at least 5 data cleaning techniques inside a file named clean.ipynb
    • null values, columns drop, duplicated data, string manipulation, apply fn, categorize, regex, etc.
  5. Show data that validates the conclusions based on your hypoteses in a file named analysis.ipynb
  6. Build a compelling story-telling around your findings. Think of your stakeholders and convince them with your conclusions! (Some slides with few text and pretty plots are normally useful)
  7. Encapsulate your code into functions and save them into .py files: make sure you have docstrings
  8. Import those functions into your jupyter notebooks and call them (you will substitue your code with your own functions)
  9. Work on titles and comments to have a well presented and cohesive story in your notebook

Suggested Ways to Get Started

  • Examine the data and try to understand what the fields mean before diving into data cleaning and manipulation methods.
  • Break the project down into different steps - use the topics covered in the lessons to form a check list, add anything else you can think of that may be wrong with your data set, and then work through the check list.
  • Use the tools in your tool kit - your knowledge of Python, data structures, Pandas, and data wrangling. Work through the lessons in class & ask questions when you need to! Think about adding relevant code to your project each night, instead of, you know... procrastinating.
  • Commit early, commit often, don’t be afraid of doing something incorrectly because you can always roll back to a previous version.
  • Consult documentation and resources provided to better understand the tools you are using and how to accomplish what you want.

How to deliver the project

  1. Create a new repo with the name data-cleaning-pandas on your github account (or another name)
    • Create a README.md file on repo root with project documentation. Make sure to include as much useful information as possible. Someone that finds the README.md should be able to fully get a gist of the project without browsing your files.
    • Include a .gitignore
    • At least 1 jupyter notebook is required
    • Including your functions in a src.py is very, very highly reccommended (maybe even mandatory, check with your instructors)
    • DO NOT UPLOAD SHARKs ATTACK DATASET TO GITHUB
  2. Open an Issue on this repo and paste your own repo's link.

Links & Resources

About