Skip to content
Project: Hypothesis Testing with Men's and Women's Soccer Matches
  • AI Chat
  • Code
  • Report
  • #Women's and Men's soccer matches

    You're working as a sports journalist at a major online sports media company, specializing in soccer analysis and reporting. You've been watching both men's and women's international soccer matches for a number of years, and your gut instinct tells you that more goals are scored in women's international football matches than men's. This would make an interesting investigative article that your subscribers are bound to love, but you'll need to perform a valid statistical hypothesis test to be sure!

    While scoping this project, you acknowledge that the sport has changed a lot over the years, and performances likely vary a lot depending on the tournament, so you decide to limit the data used in the analysis to only official FIFA World Cup matches (not including qualifiers) since 2002-01-01.

    You create two datasets containing the results of every official men's and women's international football match since the 19th century, which you scraped from a reliable online source. This data is stored in two CSV files: women_results.csv and men_results.csv.

    The question you are trying to determine the answer to is:

    Are more goals scored in women's international soccer matches than men's?

    You assume a 10% significance level, and use the following null and alternative hypotheses:

    : The mean number of goals scored in women's international soccer matches is the same as men's.

    : The mean number of goals scored in women's international soccer matches is greater than men's.

    # Imports
    import pandas as pd
    import matplotlib.pyplot as plt
    import pingouin
    from scipy.stats import mannwhitneyu
    
    # Load men's and women's datasets
    men = pd.read_csv("men_results.csv")
    women = pd.read_csv("women_results.csv")
    
    # Filter the data for the time range and tournament
    men["date"] = pd.to_datetime(men["date"])
    men_subset = men[(men["date"] > "2002-01-01") & (men["tournament"].isin(["FIFA World Cup"]))]
    women["date"] = pd.to_datetime(women["date"])
    women_subset = women[(women["date"] > "2002-01-01") & (women["tournament"].isin(["FIFA World Cup"]))]
    
    # Create group and goals_scored columns
    men_subset["group"] = "men"
    women_subset["group"] = "women"
    men_subset["goals_scored"] = men_subset["home_score"] + men_subset["away_score"]
    women_subset["goals_scored"] = women_subset["home_score"] + women_subset["away_score"]
    
    # Determine normality using histograms
    men_subset["goals_scored"].hist()
    plt.show()
    plt.clf()
    
    # Goals scored is not normally distributed, so use Wilcoxon-Mann-Whitney test of two groups
    men_subset["goals_scored"].hist()
    plt.show()
    plt.clf()
    
    # Combine women's and men's data and calculate goals scored in each match
    both = pd.concat([women_subset, men_subset], axis=0, ignore_index=True)
    
    # Transform the data for the pingouin Mann-Whitney U t-test/Wilcoxon-Mann-Whitney test
    both_subset = both[["goals_scored", "group"]]
    both_subset_wide = both_subset.pivot(columns="group", values="goals_scored")
    
    # Perform right-tailed Wilcoxon-Mann-Whitney test with pingouin
    results_pg = pingouin.mwu(x=both_subset_wide["women"],
                              y=both_subset_wide["men"],
                              alternative="greater")
    
    # Alternative SciPy solution: Perform right-tailed Wilcoxon-Mann-Whitney test with scipy
    results_scipy = mannwhitneyu(x=women_subset["goals_scored"],
                                 y=men_subset["goals_scored"],
                                 alternative="greater")
    
    # Extract p-value as a float
    p_val = results_pg["p-val"].values[0]
    
    # Determine hypothesis test result using sig. level
    if p_val <= 0.01:
        result = "reject"
    else:
        result = "fail to reject"
    
    result_dict = {"p_val": p_val, "result": result}