My GitHub Pages Site

Hello everybody!

Welcome to my GitHub Page, here you can see the recent posts!

Recent Posts

Gbm

17 minute read

Gradient Boosting Machine (GBM) Whereas random forests build an ensemble of deep independent trees, GBMs build an ensemble of shallow and weak successive tr...

Rf

16 minute read

Random Forest in R Due to computational restrictions, this time we select randomly 260.000 observations from the original data, although this sub-sample re...

Trees

6 minute read

Tree classifiers in R library(data.table) library(tree) library(readr) NY <- read_delim("C:/Users/D/Desktop/NY.csv", ";", escape_double = FALSE, trim_ws...

Pcr&pls

5 minute read

Performing Principal Components Regression (PCR) and Partial Least Squares Regression (PLS) in R For UBER’s dataset library(tidyverse) library(caret) libra...