Project: Optimizing Online Sports Retail Revenue
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    Sports clothing and athleisure attire is a huge industry, worth approximately $193 billion in 2021 with a strong growth forecast over the next decade!

    In this notebook, you will undertake the role of a product analyst for an online sports clothing company. The company is specifically interested in how it can improve revenue. You will dive into product data such as pricing, reviews, descriptions, and ratings, as well as revenue and website traffic, to produce recommendations for its marketing and sales teams.

    You've been provided with five datasets to investigate:

    • info.csv
    • finance.csv
    • reviews.csv
    • traffic.csv
    • brands.csv

    The company has asked you to answer the following questions:

    What is the volume of products and average revenue for Adidas and Nike products based on price quartiles?

    • Label products priced up to quartile one as "Budget", quartile 2 as "Average", quartile 3 as "Expensive", and quartile 4 as "Elite".
    • Store as a pandas DataFrame called adidas_vs_nike containing the following columns: "brand", "price_label", "count", and "revenue".

    Do any differences exist between the word count of a product's description and its mean rating?

    • Store the results as a pandas DataFrame called description_lengths containing the following columns: "description_length", "rating", "reviews".

    How does the volume of products and median revenue vary between clothing and footwear?

    • Store as a pandas DataFrame called product_types containing the following columns: "clothing_products", "clothing_revenue", "footwear_products", "footwear_revenue".

    Completing the project

    • Create a dictionary called revenue_analysis containing the following key-value pairs:
      • "brand_analysis": adidas_vs_nike DataFrame.
      • "description_analysis": description_lengths DataFrame.
      • "product_analysis": product_types DataFrame
    # Start coding here... 
    import pandas as pd
    
    #reading the csv's
    brands = pd.read_csv('brands.csv')
    info = pd.read_csv('info.csv')
    finance = pd.read_csv('finance.csv')
    reviews = pd.read_csv('reviews.csv')
    traffic = pd.read_csv('traffic.csv', parse_dates=['last_visited'])
    #Description of BRANDS dataframe
    print("BRANDS")
    print(brands.columns)
    print(brands.shape)
    print(brands.head())
    print(brands.isna().sum())
    print(brands.info())
    #Description of BRANDS dataframe
    print("INFO")
    print(info.columns)
    print(info.shape)
    print(info.head())
    print(info.isna().sum())
    print(info.info())
    #Description of FINANCE dataframe
    print("FINANCE")
    print(finance.columns)
    print(finance.shape)
    print(finance.head())
    #Description of REVIEWS dataframe
    print("REVIEWS")
    print(reviews.columns)
    print(reviews.shape)
    print(reviews.head())
    #Description of TRAFFIC dataframe
    print("TRAFFIC")
    print(traffic.columns)
    print(traffic.shape)
    print(traffic.head())
    brands_info = brands.merge(info, on='product_id')
    print(brands_info.head())
    print(brands_info.columns)
    df_3 = brands_info.merge(finance, on='product_id')
    df_4 = df_3.merge(reviews, on='product_id')
    full_df = df_4.merge(traffic, on='product_id')
    print(full_df.shape)
    print(full_df.columns)
    print(full_df.isna().sum())
    print(full_df.info())
    threshold = len(full_df) * 0.05
    cols_to_drop = full_df.columns[full_df.isna().sum() <= threshold]
    full_df.dropna(subset=cols_to_drop, inplace=True)
    print(full_df.isna().sum())
    full_df['last_visited'].fillna(method='ffill', inplace=True)
    print(full_df.isnull().sum())
    print(full_df.shape)
    labels = ['Budget', 'Average', 'Expensive', 'Elite']
    full_df['price_label'] = pd.qcut(full_df['listing_price'], 4, labels=labels)
    print(full_df[['listing_price', 'price_label']].head())