Skip to content

Instantly share code, notes, and snippets.

View leakyMirror's full-sized avatar

Justas leakyMirror

  • Vilnius, Lithuania
View GitHub Profile
@zachmayer
zachmayer / 1. Setup.R
Created June 1, 2011 17:56
Kaggle Competition Walkthrough: Wrapup
#Setup
rm(list = ls(all = TRUE)) #CLEAR WORKSPACE
#Directory
setwd("~/Overfitting")
#Load Required Packages
library('caTools')
library('caret')
library('glmnet')
@zachmayer
zachmayer / Kaggle Code.R
Created April 29, 2011 16:35
Cross validate RFE
#Directory
setwd('~/wherever')
#Load Required Packages
library('caret')
library('glmnet')
library('ipred')
library('e1071')
library('caTools')