Choosing the right test: petrochemicals
In a chemistry research lab, scientists are examining the efficiency of three well-known catalysts—Palladium (Pd), Platinum (Pt), and Nickel (Ni)—in facilitating a particular reaction. Each catalyst is used in a set of identical reactions under controlled conditions, and the time taken for each reaction to reach completion is meticulously recorded. Your goal is to compare the mean reaction times across the three catalyst groups to identify which catalyst, if any, has a significantly different reaction time.
The data is available in the chemical_reactions
DataFrame. pandas as pd
, numpy as np
, and the following functions have been loaded as well:
from scipy.stats import ttest_ind
from scipy.stats import f_oneway
from scipy.stats import chi2_contingency
This exercise is part of the course
Experimental Design in Python
Hands-on interactive exercise
Turn theory into action with one of our interactive exercises
