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.
|
|
5 years ago | |
|---|---|---|
| .. | ||
| code | 5 years ago | |
| data | 5 years ago | |
| README.md | 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!