From the course: Complete Guide to Analytics Engineering
Unlock this course with a free trial
Join today to access over 24,900 courses taught by industry experts.
The pandas Python library
From the course: Complete Guide to Analytics Engineering
The pandas Python library
- [Instructor] One reason Python is one of the most popular programming languages in the world is because of its robust packaged library. Just like how you can check out a library book at a local library, you can import and use a Python library to perform common actions needed in analytics engineering. For example, let's say you want to take our salesdata.CSV and remove a column from the file. In another programming language, you might have to write a function from scratch that can edit a CSV, but in Python, we can use the Pandas library, which already has a drop function that you can use to remove a column from the CSV. Pandas might be the most important Python library to learn as it lets you visualize data, alter data, join data together, et cetera. If you need to make any changes to data at all in Python, Pandas is probably the most ubiquitous solution. Let's jump back into code spaces and create a new script. Click the new file button in the file explorer. Let's name this…
Contents
-
-
-
-
-
(Locked)
What is Python, and why do we use it?1m 28s
-
(Locked)
Our Python environment and dataset2m 24s
-
(Locked)
Kernels, running Python code, and other basics5m 27s
-
(Locked)
The pandas Python library4m 38s
-
(Locked)
DataFrames, data series, and data types in pandas3m 14s
-
(Locked)
Selecting, sorting, and filtering data with pandas3m 42s
-
(Locked)
Solving common data type problems with Python pandas4m 26s
-
(Locked)
Cleaning data with pandas5m 48s
-
(Locked)
CoderPad solution: Solve an analytical task with Python23s
-
(Locked)
-
-
-
-
-
-
-