You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrew Riddle e19fcdcd69
first commit
5 years ago
..
code first commit 5 years ago
data first commit 5 years ago
NBA_players_2015.csv first commit 5 years ago
README.md first commit 5 years ago
README.pdf first commit 5 years ago
pandas_final_hw_solutions.ipynb first commit 5 years ago

README.md

Lab: EDA and Feature Engineering in Pandas


Welcome!

Pandas: Final Practice Problems

In this homework, you're going to write code for a few problems on two datasets:

  • The iris dataset - a dataset of flowers whose species is classified by attributes of their flower sizes
  • The NCAA March Madness dataset - a collection of ranks for teams in the March Madness sportsball competition.

You'll practice the following programming concepts we've covered in class:

  • Basic EDA with Pandas.
  • Using the .apply() method to create new feature columns and mutate existing columns
  • Broadcasting, or implementing math transformations at column scale
  • Dropping columns
  • And much, much more!