Random Forest

Learn about the random forest classification technique. First, we will introduce bootstrap samples and bagging.

We'll cover the following...

Bootstrap

Bootstrap is a statistical technique that is used to estimate a measure from the data. For example, consider that we have to calculate the mean of a large sample of data. We can estimate the mean by:

  • Collecting small subsamples of the data.
  • Calculating mean of each
...