对于给定的序列,我如何获取某些行号(索引)的行。我知道nth()
可以选择第n个索引。但是如果我想按索引选择多行呢?
r.expr([0, 10, 20, 30, 40, 50]).nth(3) // gives 30
以上工作。但是,我如何获得以下内容?
r.expr([0, 10, 20, 30, 40, 50]).nth([3, 5, 2]) // gives [30, 50, 20]
对于给定的序列,我如何获取某些行号(索引)的行。我知道nth()
可以选择第n个索引。但是如果我想按索引选择多行呢?
r.expr([0, 10, 20, 30, 40, 50]).nth(3) // gives 30
以上工作。但是,我如何获得以下内容?
r.expr([0, 10, 20, 30, 40, 50]).nth([3, 5, 2]) // gives [30, 50, 20]
您可能会更好地使用切片:
selection.slice(startOffset[, endOffset, {leftBound:'closed', rightBound:'open'}]) → 选择
文档在这里。