- The aim of this exercise is to predict the volume of the tree given its girth-width and its height.
- Assuming that the tree is like a cone, one use the geometric formula for cone to calculate the volume of a tree. But the trees are not always a perfect cone.
- In this exercise, we use the
treesdataset from the R 'datasets' package. This dataset contains 31 observations of trees with their girth, height and volume. - Pitch:
- Let's see if building a Linear model using this dataset gives us a better predictor of the tree volume.
- Once we have the model, let's see if we can convert it into an interactive application that predicts the tree volume using girth and height.