在strsplit函数中查找下标索引

时间:2013-05-17 11:35:33

标签: r mapreduce bigdata

在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, "\\|"))

0 个答案:

没有答案