...

/

Data Exploration: Monthly Revenue Analysis

Data Exploration: Monthly Revenue Analysis

Learn about different data exploration techniques using pandas, Matplotlib, and Seaborn libraries.

In this lesson, we’ll work with an online Compact Disk (CD) selling dataset that contains customer transaction records. Later, we’ll learn the techniques to calculate CLV using machine learning.

Here is some basic information about the dataset.

Feature Details

Feature

Data Type

Details

customer_id

Integer

Unique identifier of a customer

date

String

Date and time of the transaction

quantity

String

Quantity sold in a transaction

price

Integer

Total sale amount

Feature exploration

First, let’s import the dataset, check the ...