Introduction to Data Analysis with Python

Testimonials (44 reviews)

Features

Premium video tutorials

Award-winning instructors

Personalized learning

Get certified

Learn at your own pace

Mobile (learn on-the-go)

Unlimited tests and quizzes

Regularly updated content


Overview

This Python data analysis course will strengthen your skills as a data scientist so that you can visualize many different types of data. If you’re ready to move beyond using Excel to process and organize your data, then this course will help you grow your skill-set without any previous coding experience required.

Award-winning instructor, John Elder, will take you through an introduction to data analysis with Python using essential Python data analysis tools like Numpy and Pandas. By the end of the course, you will understand the fundamentals of Python for data analysis.

In this Python data analysis course, you will learn how to:

  • Install Python on your operating system
  • Import and install Numpy 
  • Use Numpy arrays, operations, and universal functions
  • Install Pandas data analysis toolkit
  • Use Pandas Series and DataFrames
  • Clean and prepare your data with Pandas DataFrames
  • Create data visualizations with Pandas
  • Install SciKitLearn to make predictions using essential machine learning
  • Create and analyze a linear regression model

Want to continue improving your skills in Python? Check out the Intro to Python course.

Once enrolled, our friendly support team and tutors are here to help with any course related inquiries.

Introduction to Data Analysis with Python
Focus video player for keyboard shortcuts
Auto
  • HD
  • 720p
  • 540p
  • 360p
1.00x
  • 0.50x
  • 0.75x
  • 1.00x
  • 1.25x
  • 1.50x
  • 1.75x
  • 2.00x
cc

Summary

Skill level: Beginner
Certificate: Yes
Lessons: 44
Accredited by: CPD
Pre-requisites: None
Video duration: 3h 10m
Estimated study time: 22h for all materials

Accreditations and approvals



Syllabus

1

Try it!

Introduction - What to Expect From the Course

A quick rundown of what to expect from this course, how we're going to move forward, and the roadmap we'll follow as we progress through the course.

2

Installing Python

Let's start downloading the tools we need for the course, including downloading Python itself.

3

Installing The Git Bash Terminal

We need one more major tool to do data analysis with Python: the Git Bash Terminal. In this video, I'll show you how to download and install it.

4

Setting up a Virtual Environment

A virtual environment is a helpful tool that allows us to install programs and try out code without affecting the rest of our computer. In this video, you'll learn how to set up your own virtual environment.

5

Installing and Using Jupyter Notebooks

We're going to use Jupyter Notebooks throughout the rest of the course to do all our coding, so in this video, let's install and start using it.

1

Pip Installing and Importing Numpy

In this video, we'll download and use our first data analysis tool: Numpy, which stands for Numerical Python.

2

Numpy Overview - What is It Used for

Before we start coding with Numpy, let's discuss what it does and how it works. This video will help you understand why Numpy is so important for data analysis.

3

Numpy Arrays

In this video, we discuss how Numpy arrays work, including how they are much, much faster to work with than regular Python arrays.

4

Numpy Operations

Let's discuss mathematical operations we can use in Numpy, including scalars.

5

Numpy Universal Functions

Numpy has universal functions built into it that we can play with and use. In this video, we'll discuss square roots, absolute values, exponents, and more.

1

Installing Pandas and Overview - What is It Used for

Pandas is a powerful Python data analysis toolkit. In this video, we'll discuss what it does and how it works.

2

Pandas Series

Pandas series is one of the main "workhorses" of Pandas. We'll discuss how series work and some of the helpful ways you can use them.

3

Try it!

Pandas DataFrames

DataFrames are like spreadsheets, and in this video, we start building and using them.

4

Selecting Columns and Multiple Columns

We discuss how to select individual and multiple columns within a data frame.

5

Creating New Columns

In this video, we cover how to add a new column to your data frame.

6

Removing Columns

Let's discuss how to use the drop function to remove a column from your data frame.

7

Deleting Rows

Deleting a row in a data frame is very similar to deleting a column - but with one small difference.

8

Selecting Rows

In this video, we'll discuss two different ways to select a row within a data frame, including the loc function.

9

Selecting Subsets of Rows and Columns

Let's discuss how to select specific points within your data frames, such as the intersection of a row and column, or multiple points within different rows and columns.

10

Conditional Selection of DataFrames

Selecting data based on conditionals - such as greater than, less than, equal to, not equal to - is an essential part of data analysis. We'll discuss that in this video.

11

Multiple Conditions

In this video, we'll explain how to select data based on multiple conditional statements.

12

Changing Indexes

There are times when you may need to reset your index within a data frame, so we'll explain how that works in this video.

13

Selecting Specific Cells From Multi-Index

Let's discuss multi-indexes: what they are, how they work, and how to select data from them.

14

Dealing With Missing Data

You may encounter missing data while doing analysis. What should you do? In this video, we'll discuss some helpful alternatives.

15

Groupby Grouping Data

The groupby function allows us to group different pieces of data together. We'll discuss the function in this video.

16

Concatenating, Merging, and Joining Part 1

There are different ways to combine various pieces of data within your data frame. In this video, we'll discuss concatenating.

17

Concatenating, Merging, and Joining Part 2

We discuss how to merge and join data frames together in this video.

18

Operations: Unique Values and Value Counts

In this video, we discuss how to find unique values within a column and how to find value counts as well.

19

Operations: Apply Method

The apply method allows us to create our own functions and apply them to the data in our columns.

20

Operations: Sorting, Ordering, and Finding Nulls

In this video, we discuss how to sort and order your data.

1

Try it!

Plotting Histograms

In this video, we begin discussing data visualization, and install matplotlib to help us create histograms.

2

Plotting Area Plots

We discuss how to create another type of data visualization: area plots.

3

Plotting Bar Plots

In this video, we explain how to create bar plots using your data.

4

Plotting Line Plots

Let's create line plots and discuss some of the options you can use to change their appearance.

5

Plotting Scatter Plots

Scatter plots are a bit more complicated, but can be helpful ways to visualize your data.

6

Plotting Box Plots

In this video, we discuss how to create your own box plots.

7

Plotting HexPlots

In this video, we explain what a hexplot is and how to create your own.

8

Plotting Density Plots

In this video, we discuss density plots, kernel density estimation (KDE) plots, and how to create them.

1

Try it!

What Is Linear Regression - Least Squares Method

Let's start talking about machine learning. In this video, we introduce linear regression and the least squares method.

2

Linear Regression Installation

We need to install some more elements to do a linear regression, so we'll discuss what we need in this video.

3

Split Data into Training and Testing Set

As we begin to set up our linear regression model, we must define testing and training splits.

4

Train a Linear Regression Model and Fit the Model

In this video, learn how to train a linear regression model and how easy it is to fit the model.

5

Explore the Coefficents and Intercepts

We'll take a look at the coeffecients and intercepts we discovered at the end of the last video and explain what they mean.

6

Make Predictions and Analyze Results

In this video, we'll learn how to make predictions and analyze results based on the data analysis we've performed so far.

Download syllabus