Skip to content

Latest commit

 

History

History
309 lines (268 loc) · 13.1 KB

ExampleRun.md

File metadata and controls

309 lines (268 loc) · 13.1 KB

This article is a demonstration the use of the R vtreat variable preparation package followed by caret controlled training.

For discussion on this article please see here. Note we have since swithced to xgboost in this demonstration inspired by this nice article.

In previous writings we have gone to great lengths to document, explain and motivate vtreat. That necessarily gets long and unnecessarily feels complicated.

In this example we are going to show what building a predictive model using vtreat best practices looks like assuming you were somehow already in the habit of using vtreat for your data preparation step. We are deliberately not going to explain any steps, but just show the small number of steps we advise routinely using. This is a simple schematic, but not a guide. Of course we do not advise use without understanding (and we work hard to teach the concepts in our writing), but want what small effort is required to add vtreat to your predictive modeling practice.

First we set things up: load libraries, initialize parallel processing.

library('vtreat')
library('caret')
library('xgboost')
library('doMC')
library('WVPlots') # see https://github.com/WinVector/WVPlots

# parallel for vtreat
ncores <- parallel::detectCores()
parallelCluster <- parallel::makeCluster(ncores)
# parallel for caret
registerDoMC(cores=ncores)

The we load our data for analysis. We are going to build a model predicting an income level from other demographic features. The data is taken from here and you can perform all of the demonstrated steps if you download the contents of the example git directory. Obviously this has a lot of moving parts (R, R Markdown, Github, R packages, devtools)- but is very easy to do a second time (first time can be a bit of learning and preparation).

# load data
# data from: http://archive.ics.uci.edu/ml/machine-learning-databases/adult/
colnames <-
  c(
    'age',
    'workclass',
    'fnlwgt',
    'education',
    'education-num',
    'marital-status',
    'occupation',
    'relationship',
    'race',
    'sex',
    'capital-gain',
    'capital-loss',
    'hours-per-week',
    'native-country',
    'class'
  )
dTrain <- read.table(
  'adult.data.txt',
  header = FALSE,
  sep = ',',
  strip.white = TRUE,
  stringsAsFactors = FALSE,
  na.strings = c('NA', '?', '')
)
colnames(dTrain) <- colnames
dTest <- read.table(
  'adult.test.txt',
  skip = 1,
  header = FALSE,
  sep = ',',
  strip.white = TRUE,
  stringsAsFactors = FALSE,
  na.strings = c('NA', '?', '')
)
colnames(dTest) <- colnames

Now we use vtreat to prepare the data for analysis. The goal of vtreat is to ensure a ready-to-dance data frame in a statistically valid manner. We are respecting the test/train split and building our data preparation plan only on the training data (though we do apply it to the test data). This step helps with a huge number of potential problems through automated repairs:

  • re-encoding missing values
  • dealing with large cardinality categorical variables
  • dealing with novel levels
  • fixing variable/column names to be "R safe"
  • looking for strange column types
# define problem
yName <- 'class'
yTarget <- '>50K'
varNames <- setdiff(colnames,yName)

# build variable encoding plan and prepare simulated out of sample
# training fame (cross-frame) 
# http://www.win-vector.com/blog/2016/05/vtreat-cross-frames/
system.time({
  cd <- vtreat::mkCrossFrameCExperiment(dTrain,varNames,yName,yTarget,
                                        parallelCluster=parallelCluster)
  scoreFrame <- cd$treatments$scoreFrame
  dTrainTreated <- cd$crossFrame
  # pick our variables
  newVars <- scoreFrame$varName[scoreFrame$sig<1/nrow(scoreFrame)]
  dTestTreated <- vtreat::prepare(cd$treatments,dTest,
                                  pruneSig=NULL,varRestriction=newVars)
})
##    user  system elapsed 
##  12.140   2.943  33.937
#print(newVars)

Now we train our model. In this case we are using the caret package to tune parameters.

# train our model using caret
system.time({
  # work around "levels must be valid R variable names issue"
  dTrainTreated$yLogical = as.factor(paste0('v',as.character(dTrainTreated[[yName]]==yTarget)))
  # from:http://blog.revolutionanalytics.com/2016/05/using-caret-to-compare-models.html
  # could use accuracy as the tuning metric, but going to demonstrate using AUC
  ctrl <- trainControl(method = "cv",
                     number = 5,
                     summaryFunction=twoClassSummary,   # Use AUC to pick the best model
                     classProbs=TRUE,
                     allowParallel = TRUE)
  model <- train(x=dTrainTreated[,newVars],
                 y=dTrainTreated$yLogical,
                 method="xgbTree",
                 metric="ROC",
                 trControl=ctrl)
  print(model)
  dTest$pred <- predict(model,newdata=dTestTreated[,newVars],type='prob')[,'vTRUE']
})
## eXtreme Gradient Boosting 
## 
## 32561 samples
##    59 predictor
##     2 classes: 'vFALSE', 'vTRUE' 
## 
## No pre-processing
## Resampling: Cross-Validated (5 fold) 
## Summary of sample sizes: 26049, 26048, 26049, 26049, 26049 
## Resampling results across tuning parameters:
## 
##   eta  max_depth  colsample_bytree  nrounds  ROC        Sens     
##   0.3  1          0.6                50      0.9119288  0.9498786
##   0.3  1          0.6               100      0.9166231  0.9443770
##   0.3  1          0.6               150      0.9192115  0.9449838
##   0.3  1          0.8                50      0.9120844  0.9496764
##   0.3  1          0.8               100      0.9166067  0.9447411
##   0.3  1          0.8               150      0.9192564  0.9453883
##   0.3  2          0.6                50      0.9209832  0.9459547
##   0.3  2          0.6               100      0.9260585  0.9442557
##   0.3  2          0.6               150      0.9275664  0.9435680
##   0.3  2          0.8                50      0.9213899  0.9461165
##   0.3  2          0.8               100      0.9258379  0.9435680
##   0.3  2          0.8               150      0.9273453  0.9434466
##   0.3  3          0.6                50      0.9258975  0.9445793
##   0.3  3          0.6               100      0.9281575  0.9422330
##   0.3  3          0.6               150      0.9288680  0.9411408
##   0.3  3          0.8                50      0.9263265  0.9454693
##   0.3  3          0.8               100      0.9284445  0.9429612
##   0.3  3          0.8               150      0.9291195  0.9420307
##   0.4  1          0.6                50      0.9137344  0.9440939
##   0.4  1          0.6               100      0.9184002  0.9444579
##   0.4  1          0.6               150      0.9208363  0.9438107
##   0.4  1          0.8                50      0.9137965  0.9444175
##   0.4  1          0.8               100      0.9184990  0.9441748
##   0.4  1          0.8               150      0.9207576  0.9439725
##   0.4  2          0.6                50      0.9232521  0.9453074
##   0.4  2          0.6               100      0.9269142  0.9428398
##   0.4  2          0.6               150      0.9278805  0.9428398
##   0.4  2          0.8                50      0.9232426  0.9453074
##   0.4  2          0.8               100      0.9269677  0.9436893
##   0.4  2          0.8               150      0.9280206  0.9433252
##   0.4  3          0.6                50      0.9280836  0.9437298
##   0.4  3          0.6               100      0.9290156  0.9406149
##   0.4  3          0.6               150      0.9288506  0.9402104
##   0.4  3          0.8                50      0.9274379  0.9436489
##   0.4  3          0.8               100      0.9285733  0.9417071
##   0.4  3          0.8               150      0.9284223  0.9401699
##   Spec     
##   0.5646002
##   0.6014574
##   0.6094922
##   0.5649837
##   0.6001824
##   0.6089820
##   0.6137009
##   0.6371665
##   0.6452012
##   0.6128083
##   0.6388252
##   0.6460938
##   0.6388246
##   0.6531089
##   0.6546393
##   0.6327040
##   0.6485183
##   0.6534913
##   0.5893427
##   0.6079619
##   0.6180369
##   0.5883233
##   0.6079634
##   0.6177824
##   0.6241601
##   0.6439266
##   0.6509410
##   0.6277299
##   0.6450742
##   0.6499205
##   0.6487725
##   0.6582097
##   0.6626728
##   0.6478797
##   0.6564238
##   0.6573163
## 
## Tuning parameter 'gamma' was held constant at a value of 0
## 
## Tuning parameter 'min_child_weight' was held constant at a value of 1
## ROC was used to select the optimal model using  the largest value.
## The final values used for the model were nrounds = 150, max_depth = 3,
##  eta = 0.3, gamma = 0, colsample_bytree = 0.8 and min_child_weight = 1.

##    user  system elapsed 
## 163.162   4.227  65.796

Finally we take a look at the results on the held-out test data.

WVPlots::ROCPlot(dTest,'pred',yName,'predictions on test')

WVPlots::DoubleDensityPlot(dTest,'pred',yName,'predictions on test')

confusionMatrix <- table(truth=dTest[[yName]],pred=dTest$pred>=0.5)
print(confusionMatrix)
##         pred
## truth    FALSE  TRUE
##   <=50K. 11700   735
##   >50K.   1322  2524
testAccuarcy <- (confusionMatrix[1,1]+confusionMatrix[2,2])/sum(confusionMatrix)
testAccuarcy
## [1] 0.8736564

Notice the achieved test accuracy is in the ballpark of what was reported for this dataset.

(From http://archive.ics.uci.edu/ml/machine-learning-databases/adult/adult.names )
Error Accuracy reported as follows, after removal of unknowns from
 |    train/test sets):
 |    C4.5       : 84.46+-0.30
 |    Naive-Bayes: 83.88+-0.30
 |    NBTree     : 85.90+-0.28

We can also compare accuracy on the "complete cases":

dTestComplete <- dTest[complete.cases(dTest[,varNames]),]
confusionMatrixComplete <- table(truth=dTestComplete[[yName]],
                                 pred=dTestComplete$pred>=0.5)
print(confusionMatrixComplete)
##         pred
## truth    FALSE  TRUE
##   <=50K. 10639   721
##   >50K.   1253  2447
testAccuarcyComplete <- (confusionMatrixComplete[1,1]+confusionMatrixComplete[2,2])/
  sum(confusionMatrixComplete)
testAccuarcyComplete
## [1] 0.8689243
# clean up
parallel::stopCluster(parallelCluster)

These two scores are within noise bounds of each other, but it is our experience that missingness is often actually informative, so in addition to imputing missing values you would like to preserve some notation indicating the missingness (which vtreat does in fact do).

And that is all there is to this example. I'd like to emphasize that vtreat steps were only a few lines in one of the blocks of code. vtreat treatment can take some time, but it is usually bearable. By design it is easy to add vtreat to your predictive analytics projects.

The point is: we got competitive results on real world data, in a single try (using vtreat to prepare data and caret to tune parameters). The job of the data scientist is to actually work longer on a problem and do better. But having a good start helps.

The theory behind vtreat is fairly important to the correctness of our implementation, and we would love for you to read through some of it:

But operationally, please think of vtreat as just adding a couple of lines to your analysis scripts. Again, the raw R markdown source can be found here and a rendered copy (with results and graphs) here.