I'm looking to plot the distribution of age across the different trees in the locality data.
I did the following but the graph isn't representative :
ggplot(tree_data, aes(x = Age.Life, fill = Tree)) +
geom_density(alpha=.5) +
scale_fill_brewer(palette="Set1")