Understanding the total amount of biomass (the total mass of all individuals) in forests is important for understanding the global carbon budget and how the earth will respond to increases in carbon dioxide emissions.
We don’t normally measure the mass of a tree, but take a measurement of the diameter or circumference of the trunk and then estimate mass using equations like M = 0.124 * D2.53.
1. Estimate tree biomass for each species in a 96 hectare area of the Western Ghats in India using the following steps.
dplyr pipeline that
    mutate and your function) that contains masses
calculated from the diametersSpCode columnsum of the masses) for each species
(using summarize)2. Plot a histogram of the species biomass values you just calculated.
bins argument)scale_x_log10)Biomass and the y axis label to Number of Species (using labs)