Project: Data Driven Product Management: Conducting a Market Analysis
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    You are a product manager for a fitness studio based in Singapore and are interested in understanding the types of digital products you should offer. You already run successful local studios and have an established practice in Singapore. You want to understand the place of digital fitness products in your local market.

    You would like to conduct a market analysis in Python to understand how to place your digital product in the regional market and what else is currently out there.

    A market analysis will allow you to achieve several things. By identifying strengths of your competitors, you can gauge demand and create unique digital products and services. By identifying gaps in the market, you can find areas to offer a unique value proposition to potential users.

    The sky is the limit for how you build on this beyond the project! Some areas to go investigate next are in-person classes, local gyms, local fitness classes, personal instructors, and even online personal instructors.

    #importing packages 
    
    import pandas as pd
    import seaborn as sns
    import matplotlib.pyplot as plt
    sns.set(style='white', palette='Pastel2')
    import os
    
    def read_file(filepath, plot = True):
        """
        Read a CSV file from a given filepath, convert it into a pandas DataFrame,
        and return a processed DataFrame with three columns: 'week', 'region', and 'interest'. Generate a line plot using Seaborn to visualize the data. This corresponds to the first graphic (time series) returned by trends.google.com. 
        """
        file = pd.read_csv(filepath, header=1)
        df = file.set_index('Week').stack().reset_index()
        df.columns = ['week','region','interest']
        df['week'] = pd.to_datetime(df['week'])
        plt.figure(figsize=(8,3))
        df = df[df['interest']!="<1"]
        df['interest'] = df['interest'].astype(float)
    
        if plot:
            sns.lineplot(data = df, x= 'week', y= 'interest',hue='region')
        return df
    
    def read_geo(filepath, multi=False):
        """
        Read a CSV file from a given filepath, convert it into a pandas DataFrame,
        and return a processed DataFrame with two columns: 'country' and 'interest'. Generate a bar plot using Seaborn to visualize the data. This corresponds to the second graphic returned by trends.google.com. Use multi=False if only one keyword is being analyzed, and multi=True if more than one keyword is being analyzed.
        """
        file = pd.read_csv(filepath, header=1)
    
        if not multi:
            file.columns = ['country', 'interest']
            plt.figure(figsize=(8,4))
            sns.barplot(data = file.dropna().iloc[:25,:], y = 'country', x='interest')
    
        if multi:
            plt.figure(figsize=(3,8))
            file = file.set_index('Country').stack().reset_index()
            file.columns = ['country','category','interest']
            file['interest'] = pd.to_numeric(file['interest'].apply(lambda x: x[:-1]))
            sns.barplot(data=file.dropna(), y = 'country', x='interest', hue='category')
    
        file = file.sort_values(ascending=False,by='interest')
        return file

    1. Load data on global interest in fitness

    workout = read_file('data/workout.csv')

    2. Assess global interest on fitness.

    workout_by_month = workout.set_index('week').resample('M').mean()
    
    month_high = workout_by_month[workout_by_month['interest'] == workout_by_month['interest'].max()]
    
    month_high

    3. Segment global interest by region.

    home_workout_gym = read_file('data/home_workout_gym_workout_home_gym.csv')
    # Current and peak_covid variables
    current = 'gym workout'
    
    peak_covid = 'home workout'
    

    4. Assessing regional demand

    #Countries with the highest interest in workouts
    
    workout_global = read_geo('data/workout_global.csv')
    top_25_countries  =  workout_global.head(25)
    

    5. Assessing regional demand for home workouts, gym workouts and home gyms

    geo_categories = read_geo('data/geo_home_workout_gym_workout_home_gym.csv' , multi =True)
    mesa = ["Philippines", "Singapore","United Arab Emirates", "Qatar", "Kuwait", "Malaysia", "Sri Lanka", "India","Pakistan"]
    
    MESA = geo_categories[geo_categories['country'].isin(mesa)]