July 2020
Beginner to intermediate
576 pages
9h 12m
English
Overview
This chapter will cover pandas DataFrames in depth, thus teaching you how to perform subsetting, filtering, and grouping on DataFrames. You will be able to apply Boolean filtering and indexing to a DataFrame to choose specific elements from it. Later on in the chapter, you will learn how to perform JOIN operations in pandas that are analogous to the SQL command. By the end of this chapter you will be able to apply imputation techniques to identify missing or corrupted data and choose to drop it.
In the previous chapter, we learned how to use the pandas, numpy, and matplotlib libraries while handling various datatypes. In this chapter, we will learn about several advanced ...