# AutoML code snippets ## mlr3 cheat sheet https://cheatsheets.mlr-org.com/ ## Plot random tree ```r= lrn = rr$learners[[1]] lrn$model plot(lrn$model) ``` ## Initialize R environment ```r= setwd("C:/Users/nikol/LRZ Sync+Share/_UNI/DS_opt_AutoML Automated Machine Learning/Final Exercise/solution")``` library(R6) library(mlr3) library(mlr3pipelines) source("./automl_code/Automl.R") # Load data (only first 100 obs from first file) df<-read.csv("./data/arrivals_ATL.csv",header = TRUE) df = head(df, 1000) x = AutomlCustom$new() ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up