[R] replace uses of T and F with TRUE and FALSE (#5778)
* [R-package] replace uses of T and F with TRUE and FALSE * enable linting * Remove skip Co-authored-by: Philip Hyunsu Cho <chohyu01@cs.washington.edu>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
require(xgboost)
|
||||
require(methods)
|
||||
|
||||
train = read.csv('data/train.csv',header=TRUE,stringsAsFactors = F)
|
||||
test = read.csv('data/test.csv',header=TRUE,stringsAsFactors = F)
|
||||
train = read.csv('data/train.csv',header=TRUE,stringsAsFactors = FALSE)
|
||||
test = read.csv('data/test.csv',header=TRUE,stringsAsFactors = FALSE)
|
||||
train = train[,-1]
|
||||
test = test[,-1]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user