What is Interpolation?
Interpolation is a statistical method that constructs an estimation of data points based on discrete known values.
So why not Linear Regression?
well its not exactly the same, in Linear Least Squares Regression, its basis is that Y and X have some relation (Linear) that we can draw a basis from. Interpolation hits all data points by fitting a curve to pass through its entirety, thus finding approximate values in a known domain. Many fields of engineering utilize this method because of the type of data gathered through sampling and experimentation.
All data was used from trees