Skip to content

ta-data-pt-rmt/lab-data-cleaning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Ironhack Logo

Lab | Data Cleaning

Introduction

We keep seeing a common phrase that 80% of the work of a data scientist is data cleaning. We have no idea whether this number is accurate but a data scientist indeed spends lots of time and effort in collecting, cleaning and preparing the data for analysis. This is because datasets are usually messy and complex in nature. It is a very important ability for a data scientist to refine and restructure datasets into a usable state in order to proceed to the data analysis stage.

In this exercise, you will both practice the data cleaning techniques we discussed in the lesson and learn new techniques by looking up documentations and references. You will work on your own but remember the teaching staff is at your service whenever you encounter problems.

Getting Started

Now you should already be familar with the workflow of solving and submitting the labs. But in case not, you can review previous labs.

In this lab you will be working on main.ipynb. To launch it, first navigate to the directory that contains main.ipynb in Terminal, then execute jupyter notebook. In the webpage that is automatically opened, click the main.ipynb link to launch it.

When you are on main.ipynb, read the instructions for each cell and provide your answers. Make sure to test your answers in each cell and save. Jupyter Notebook should automatically save your work progress - But it's a good idea to periodically save your work manually, just in case.

Challenge Questions

  1. Create a merged dataframe with users and post tables. Take into account that you will need to do some stuff before merging.

  2. Identify missing values in the merged dataframe and apply some of the methods.

  3. Change the data types of your merged dataset accordingly.

  4. Bonus Question: Create a dataframe with the outliers you have identified in the dataframe and export it to a csv file in your-code folder.

❗ If you feel you are already good at Python/Pandas and don't need the instructions in main.ipynb to walk you through, please feel free to skip main.ipynb and create your own solution file.

Deliverables

  • main.ipynb with your responses to each of the questions above.
  • weather.ipynb containing the additional challenge code and results.

Submission

Upon completion, add your deliverables to git. Then commit git, push to your forked repo, and create the pull request as in the

git add .
git commit -m "<lab or project name>"
git push origin master
  • Navigate to your repo and create a Pull Request.
  • Create a pull request with title following this format: "[<lab/project_name>]<your_name>"
  • If you have successfully created the pull request you are done! CONGRATS :)

Resources

Data Cleaning Tutorial

Data Cleaning with Numpy and Pandas

Data Cleaning Video

Data Preparation

Google Search

Additional Challenges for the Nerds

If you have completed the Stats challenge without much difficulty, you can try to tidy the data you will find in thie lab folder weather. This dataset is a subset of a global historical climatology network dataset. The data represents the daily weather records for a weather station (MX17004) in Mexico for five months in 2010. The goal of this additional challenge is to get the most tidy dataset you are able to produce. Hint:Variables are stored in both rows and columns.

To accomplish this challenge, you will need to do some research on tidying and melt&pivot. Feel free to reference any resources you consider appropiate.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published