Acid rain has affected forests in northeastern North America by leaching essential nutrients, especially calcium, from soils. The loss of calcium can weaken trees and slow their growth. Sugar maples are ecologically important and economically valuable for maple syrup production. To study the effect of calcium on sugar maples trees health, researchers at the Hubbard Brook Experimental Forest in New Hampshire examined sugar maple seedlings. More precisely, researchers measured several indicators of seedling health in calcium-treated and untreated watersheds.
You are provided with a dataset containing measurements from sugar maple seedlings grown in these two watersheds: one treated with calcium-rich water (W1) and one left untreated (Reference). Your task is to analyze the data to determine whether calcium treatment has a significant effect on seedling health, focusing on leaf area as a key indicator of growth and vitality, and to identify which variables are most strongly associated with leaf growth.
You can load the dataset in your Python environment using the following code:
import pandas as pddf_maple = pd.read_csv("https://raw.githubusercontent.com/ELSTE-Master/Data-Science/main/Data/df_maple.csv")df_maple.head(5)