August 2018
Intermediate to advanced
378 pages
9h 9m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
dfData <- read.csv(fileName)nobs <- nrow(dfData)train <- sample(nobs, 0.9*nobs)test <- setdiff(seq_len(nobs), train)
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
> dfResults w stem stop nb_acc svm_acc nn_acc rf_acc best_acc12 binary 1 1 86.06 95.24 90.52 94.26 95.249 binary 0 1 87.71 95.15 ...