Skip to content

Instantly share code, notes, and snippets.

View ivopbernardo's full-sized avatar

ivopbernardo

View GitHub Profile
@ivopbernardo
ivopbernardo / h2o_example.r
Created November 1, 2022 19:14
h2o R Example
# Load h2o
library(h2o)
library(ggplot2)
# Load Dataset - London Bike
london_bike <- read.csv('./london_merged.csv')
# Transforming Weather code and Season to factor
london_bike$weather_code <- as.factor(london_bike$weather_code)
london_bike$season <- as.factor(london_bike$season)