This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(ranger) | |
library(randomForest) | |
library(caret) | |
library(tidymodels) | |
# Step 1. Use the 'tidy' format for your input data - 1 row per observation! | |
iris_data <- datasets::iris | |
# Get data types and summary statistics per column (variable) |