这里是什么意思Trainsetb
?我不认为它是列表名称,但无法理解它指定了什么或它的目的是什么。
> z=as.integer(4,5, 6)
> class(z)
[1] "integer"
> a=list(z)
> class(a)
[1] "list"
> b=list(Trainsetb = z)
> class(b)
[1] "list"
> names(b)
[1] "Trainsetb"
> names(a)
NULL
> a
[[1]]
[1] 4
> b
$Trainsetb
[1] 4
> b$Trainsetb
[1] 4
> Trainsetb
Error: object 'Trainsetb' not found
我正在使用这本书学习数据挖掘。我正在使用插入符号包train
功能。在train
函数中有trainControl
参数,它的定义如下:
ctrl <- trainControl(method = "LGOCV",
summaryFunction = twoClassSummary,
classProbs = TRUE,
index = list(TrainSet = pre2008),
savePredictions = TRUE)
我想知道为什么作者没有将 index 定义为index = list(pre2008)
.