在R中使用strsplit()函数时如何查找下标索引号 我的输出是
N712SW|2008 8
N772SW|2008 19
N428WN|2008 8
如果我先按标签分割,接下来用|
分割,那将是我的输出我想在使用
之后知道下标split <- unlist(strsplit(line, "\t"))
key <- split[[1]]
deptDelay <- as.numeric(split[[2]])
if (!(identical(lastKey, "")) & (!(identical(lastKey, key)))) {
keySplit <- unlist(strsplit(lastKey, "\\|"))