CHAPTER 3
PANDAS AND DATA VISUALIZATION
This chapter introduces the Pandas library and contains various code samples that illustrate some useful Pandas features. As you will see, the title of each section clearly indicates its contents, so you can easily scan this chapter for those sections that contain material that is new to you. This approach will help you make efficient use of your time when you read the contents of this chapter.
The first part of this chapter contains a brief introduction to Pandas, followed by code samples that illustrate how to define Pandas DataFrames and also display their attributes. Please keep in mind that this chapter is devoted to Pandas DataFrames. There is one code block that illustrates how to define a Pandas Series, and if you want to learn more about this Pandas Series, you can search online for more information.
The second part of this chapter discusses various types of DataFrames that you can create, such as numeric and Boolean DataFrames. In addition...