2

为什么headtail工作不同data.table?是设计使然吗?

> head(data.frame(x=1:10), -2)
  x
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
> head(data.table(x=1:10), -2)
Error in seq_len(min(n, nrow(x))) : 
  argument must be coercible to non-negative integer
> tail(data.table(x=1:10), -2)
    x
1: NA
2: NA
3: NA
4: 10
> tail(data.frame(x=1:10), -2)
    x
3   3
4   4
5   5
6   6
7   7
8   8
9   9
10 10
4

1 回答 1

8

是的,这是之前报道过的,#2375。这现在在v1.8.11中得到修复。来自新闻

head()现在tail()正确处理负“n”值,#2375。感谢 Garrett See 的报道。当length(n) != 1. 添加了测试。

于 2013-09-20T17:17:07.897 回答