
Pandas Filtering Data
In this lab, you will learn the fundamental techniques for filtering data in Pandas DataFrames, including boolean indexing, combining conditions, using isin, and handling missing values.
Pandas

Pandas Basic Data Cleaning
In this lab, you will learn the fundamental techniques for cleaning data using the Pandas library, including handling missing values, removing duplicates, and correcting data types.
Pandas

Pandas Creating DataFrames
In this lab, you will learn the fundamental ways to create Pandas DataFrames, including from dictionaries, and how to customize their columns and indexes.
Pandas

Pandas Descriptive Statistics
In this lab, you will learn how to compute various descriptive statistics for a Pandas DataFrame, including mean, median, min/max, and more.
Pandas

Pandas Reading External Data
In this lab, you will learn the fundamentals of reading external data into a Pandas DataFrame. You will use the powerful `read_csv` function and its key parameters to handle various real-world CSV file formats.
Pandas

Pandas Sorting Data
In this lab, you will learn the essential techniques for sorting data in a Pandas DataFrame. You'll explore sorting by single and multiple columns, controlling the sort order, and managing the DataFrame's index after sorting operations.
Pandas

Pandas Grouping and Aggregating
In this lab, you will learn the fundamentals of data grouping and aggregation using the Pandas library. You'll practice using groupby() to create groups and apply various aggregation functions.
Pandas

Pandas Introduction and Setup
In this lab, you will get started with Pandas, a powerful data analysis library in Python. You will learn how to verify its installation, import it, create a basic Series, access its elements, and inspect its properties.
Pandas

Pandas Selecting Data
In this lab, you will learn the fundamental techniques for selecting and subsetting data from Pandas DataFrames, including selecting columns, rows, and specific slices of data.
Pandas

Combining Data Tables in Pandas
In this lab, we will work with air quality data to explore how to combine multiple tables using Python's Pandas library. We will be using the concat and merge functions to perform these operations. This lab will help you understand how to concatenate and merge data frames effectively.
PythonPandas

Handling Time Series Data
This lab will guide you through handling time series data using the Python package, Pandas. We will be working with air quality data for this tutorial. You will learn how to convert strings into datetime objects, perform operations on these datetime objects, resample time series to another frequency, and more.
PythonPandas

Introduction to Pandas
In this lab, we will introduce you to the basics of pandas, a powerful data manipulation library in Python. We will guide you through various tasks such as importing pandas, creating and viewing data, data selection, operations and much more.
PythonPandas

Working with Nullable Boolean Data
In this lab, we will explore the Nullable Boolean data type, provided by the Pandas library in Python. We will learn how to use this feature in indexing and logical operations, and how it differs from traditional boolean operations due to the presence of 'NA' values.
PythonPandas

Pandas Copy-On-Write Implementation Guide
This lab provides a step-by-step guide on understanding and implementing the concept of Copy-On-Write (CoW) in Python Pandas. CoW is an optimization strategy that enhances performance and memory usage by delaying copies as long as possible. It also helps in avoiding accidental modifications of more than one object.
PythonPandas

Working with Data Structures in Pandas
Pandas is a powerful Python library for data manipulation and analysis. Its fundamental data structures, Series and DataFrame, allow you to store and manipulate structured data. This lab will provide a step-by-step guide on how to work with these data structures, from creation to manipulation and alignment.
PythonPandas

Titanic Passenger Data Analysis with Pandas
In this lab, we will learn how to use Python's Pandas library to calculate summary statistics for data. We will use the Titanic dataset, which contains data on passengers from the Titanic shipwreck. We will learn how to calculate summary statistics, aggregate statistics, and count the number of records by category.
PythonPandas

Working with Columns in Pandas
In this lab, we will learn how to work with columns in Pandas. We will explore how to create new columns derived from existing ones, apply mathematical and logical operations on columns, rename column labels, and perform column-wise operations using the apply method.
PythonPandas

Data Selection in Pandas
In this lab, we are going to learn how to select specific data from a DataFrame using Pandas, a popular data analysis and manipulation library in Python. We will use the Titanic dataset for this tutorial.
PythonPandas