Skip to content
Analysis of PetMind's Sales Performance
Analysis of PetMind's Sales Performance
- PetMind is a retailer of products for pets. They are based in the United States.
- PetMind sells products that are a mix of luxury items and everyday items. Luxury items include toys. Everyday items include food.
- The company wants to increase sales by selling more everyday products repeatedly.
- They have been testing this approach for the last year.
- They now want a report on how repeat purchases impact sales.
import warnings
warnings.filterwarnings('ignore')
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv('pet_supplies_2212.csv')
df.head()
# Return a tuple representing the dimensionality of the DataFrame
df.shape
# Return an int representing the number of elements
df.info()
df.describe()
df.dtypes