Skip to content

Instantly share code, notes, and snippets.

View labouz's full-sized avatar
🐣

Layla Bouzoubaa labouz

🐣
View GitHub Profile
@labouz
labouz / actions.yml
Created July 31, 2023 22:03
gh actions config - data scrape and save data
name: run data scraper
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
@labouz
labouz / .gitignore
Last active February 15, 2022 17:54 — forked from RaymondBalise/99_rmarkdown.Rmd
RMarkdown Latex Notes
.Rproj.user
.Rhistory
.RData
.Ruserdata
*.Rproj
*.html
@labouz
labouz / nyc_xgboost.R
Created October 1, 2021 15:10 — forked from juliasilge/nyc_xgboost.R
NYC Airbnb prices with xgboost and racing for R-Ladies Miami
library(tidyverse)
library(tidymodels)
library(textrecipes)
library(finetune)
library(vip)
## data from here: https://www.kaggle.com/c/sliced-s01e05-WXx7h8/data
train_raw <- read_csv("train.csv")