From the course: Python for Data Visualization
Unlock this course with a free trial
Join today to access over 24,800 courses taught by industry experts.
Introduction to pandas - Python Tutorial
From the course: Python for Data Visualization
Introduction to pandas
- [Instructor] In order to make a visualization, we need data, and we usually need it in organized tabular form suitable for plotting. The Pandas library provides easy to use data structures and data analysis tools you can use to make your data easier to plot. Pandas data frames are multidimensional, labeled data structures similar to tables and spreadsheets with rows and columns. With it, you can store and manipulate data in a table format, providing a convenient way to analyze and visualize it. An important data structure of the Panda's library is a fast and efficient object for data manipulation called a data frame. You can manipulate and transform data frames easily with various Pandas methods. You can perform operations such as filter rows based on certain conditions, sort the data, pick specific columns, merge or join multiple data frames, and aggregate data. Another useful feature of Pandas is its ability to…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
(Locked)
Introduction to pandas1m 30s
-
(Locked)
Create sample data3m 50s
-
(Locked)
Load sample data2m 17s
-
(Locked)
Basic operations1m 57s
-
(Locked)
Simplify with slicing4m 12s
-
(Locked)
Filter and clean data5m 39s
-
(Locked)
Rename and delete columns3m 16s
-
(Locked)
Aggregate functions2m 39s
-
(Locked)
Identify missing data3m 41s
-
(Locked)
Remove or fill in missing data5m 3s
-
(Locked)
Convert pandas DataFrames1m 15s
-
(Locked)
Export pandas DataFrames1m 28s
-
(Locked)
-
-
-