Pandas

A Pandas course typically covers the basics and advanced techniques of using the Pandas library in Python for data analysis. Topics may include data structures (DataFrame and Series), data manipulation, cleaning, filtering, grouping, merging, visualizing, and handling time series data. The course is aimed at helping learners efficiently work with data for various analytical tasks and projects.

Pandas Tutorial

1
Pandas Intro
10 minutes

Pandas is a powerful Python library used for data manipulation and analysis, providing flexible data structures like DataFrames and Series to handle and analyze structured data efficiently.

2
Pandas Getting Started
10 minutes

Getting started with Pandas involves installing the library, importing it with an alias, and using its data structures like DataFrames and Series for data manipulation and analysis.

3
Pandas as pd
10 minutes

Pandas is commonly imported as pd in Python to provide a shorter alias for easier reference in data manipulation and analysis tasks.

4
Pandas Series
10 minutes

A Pandas Series is a one-dimensional array-like object that can hold any data type and is labeled with an index.

5
Key/Value Objects as Series
10 minutes

In Pandas, a Series is a key/value object where the keys are the labels (index) and the values are the data elements.

6
Pandas DataFrames
10 minutes

You can create a DataFrame by combining two Series:

7
Named Indexes
10 minutes

Named indexes in Pandas allow you to assign custom labels to the rows or columns of a DataFrame or Series for easier data reference and manipulation.

8
Pandas Read CSV
10 minutes

Pandas read_csv() function is used to load data from a CSV file into a DataFrame for analysis and manipulation.

9
Pandas Read JSON
10 minutes

Pandas read_json() function is used to load data from a JSON file or string into a DataFrame for analysis and manipulation.

10
Pandas Analyzing Data
10 minutes

Pandas provides powerful tools for analyzing data, allowing you to manipulate, aggregate, and summarize datasets to extract meaningful insights.

11
Info About the Data
10 minutes

The info() method in Pandas provides a concise summary of a DataFrame, including the number of non-null entries, data types, and memory usage.

Cleaning Data

1
Cleaning Data
10 minutes

Cleaning data involves identifying and handling missing, incorrect, or inconsistent values to improve the quality and accuracy of a dataset for analysis.

2
Cleaning Empty Cells
10 minutes

Cleaning empty cells involves handling missing values by removing them or filling them with appropriate data to maintain dataset integrity.

3
Replace Using Mean, Median, or Mode
10 minutes

Replacing using mean, median, or mode involves filling empty or missing values with the average (mean), middle value (median), or most frequent value (mode) of the respective column.

4
Cleaning Wrong Format
10 minutes

Cleaning data of the wrong format involves converting or correcting data types to ensure consistency and proper analysis.

5
Cleaning Wrong Data
10 minutes

Cleaning wrong data involves identifying and correcting or removing inaccurate, inconsistent, or invalid entries in a dataset.

6
Removing Duplicates
10 minutes

Pandas provides the drop_duplicates() method to remove duplicate rows from a DataFrame based on specified columns.

Correlations

1
Pandas Correlations
10 minutes

Pandas provides the corr() method to calculate the correlation between numerical columns in a DataFrame, measuring their relationship.

Plotting

1
Pandas Plotting
10 minutes

Pandas provides built-in plotting capabilities via the plot() method, allowing easy visualization of data from DataFrames and Series.

2
Scatter Plot
10 minutes

A scatter plot is a graphical representation of data points on a two-dimensional axis, showing the relationship between two numerical variables.

3
Histogram
10 minutes

A histogram is a graphical representation of the distribution of numerical data, showing the frequency of data points within specified ranges (bins).

Be the first to add a review.

Please, login to leave a review
Start course
Enrolled: 0 students
Lectures: 21
Level: Beginner

Archive

Working hours

Monday 9:30 am - 6.00 pm
Tuesday 9:30 am - 6.00 pm
Wednesday 9:30 am - 6.00 pm
Thursday 9:30 am - 6.00 pm
Friday 9:30 am - 5.00 pm
Saturday Closed
Sunday Closed
Pandas
Category: