我有一个包含大量列的data.frame,其中一个包含示例区域的代码,另一个包含示例的编号。我想从每个样本区域的倒数第二个样本中对信息进行子集化。我尝试了很多不同的东西......最后这是我最好的猜测...但它仍然没有用。
site <- sample (1:3, 10, replace= T)
d2 <- sample (1:5, 10, replace= T)
d3 <- sample (1:5, 10, replace= T)
samplet <- sample (1:4, 10, replace= T)
mydata <- data.frame (cbind(site, d2, d3, samplet))
penultimate <- matrix(NA,,) # here I dont know how the return will be, as I dont know how the dataframe will change
si <- matrix (NA, , )
pl <- unique (site)
for (i in 1:(length (pl))) {
si <- mydata[which (samplet==pl[i]),] # I tried to create a temporary matrix, so I can calculate each site at a time
penultimate <- si[which (si$samplet!=(max(si$samplet[si$samplet!=max(si$samplet)]))),]
}
干杯!
答案 0 :(得分:4)
一种简单的方法是使用data.table
及其内置的.N
值
# assuming `d1` is the column from which you want to find the penultimate
mydata <- data.frame(d1=strsplit("AAABBCCCCCDD", "")[[1]], d2=rnorm(12), d3=LETTERS[1:12], d4=c(101:103, 201:202, 301:305, 401:402))
DT <- data.table(mydata)
DT[, .SD[.N-1], by=d1]
d1 d2 d3 d4
1: A 1.6906714 B 102
2: B -0.1239458 D 201
3: C -0.2976339 I 304
4: D 0.6858120 K 401
> mydata
d1 d2 d3 d4
1 A 0.5986002 A 101
2 A 1.6906714 B 102 <~~~~ \
3 A -0.3253657 C 103
4 B -0.1239458 D 201 <~~~~ -\
5 B 0.8261401 E 202
6 C 0.0601318 F 301 Penultimate Values by d1
7 C -0.9766622 G 302
8 C 0.1028259 H 303
9 C -0.2976339 I 304 <~~~~~ -/
10 C -1.1467000 J 305
11 D 0.6858120 K 401 <~~~~~ /
12 D -0.6160335 L 402
编辑,使用新的示例数据进行更新。
答案 1 :(得分:1)
以下是使用@ tapply
使用@ Ricardo数据的解决方案:
# data (thanks @Ricardo)
set.seed(1234)
mydata <- data.frame(d1=strsplit("AAABBCCCCCDD", "")[[1]],
d2=rnorm(12), d3=LETTERS[1:12],
d4=c(101:103, 201:202, 301:305, 401:402))
# solution
idx <- unlist(tapply(seq_len(nrow(mydata)), mydata$d1, function(x) x[length(x)-1]))
mydata[idx, ]
# d1 d2 d3 d4
# 2 A 0.2774292 B 102
# 4 B -2.3456977 D 201
# 9 C -0.5644520 I 304
# 11 D -0.4771927 K 401
如果unlist
的特定值只有1行,则需要id1
。
我会通过破坏功能尽可能地解释。查看第idx <- ...
行,函数tapply
将序列c(1, 2, ... nrow(mydata))
(此处为nrow(mydata) = 12
)按列mydata$d1
拆分。那就是:
tapply(1:12, mydata$d1, c) # just to show what happens here
$A
[1] 1 2 3
$B
[1] 4 5
$C
[1] 6 7 8 9 10
$D
[1] 11 12
现在,我们需要每个元素的 last-but-one 元素,而不是函数c
。因此,我们创建了一个function(x) x[length(x)-1]
,其中每个A, B, C, D
都是逐个传递的,代码x[length(x)-1]
选择 last-but-one 元素每次。这些为您提供所有倒数第二行的行索引。因此,只需按mydata[idx, ]
对data.frame进行子集化。
答案 2 :(得分:0)
除了之前的答案,还可以使用dplyr
:
set.seed(1234)
mydata <- data.frame(d1=strsplit("AAABBCCCCCDD", "")[[1]],
d2=rnorm(12), d3=LETTERS[1:12],
d4=c(101:103, 201:202, 301:305, 401:402))
require(dplyr)
mydata %.%
group_by(d1) %.%
mutate(count = 1:n()) %.%
filter(count %in% max(c(count-1,1))) %.%
select(-count)
在@BondedDust的答案中,如果任何给定的d1&#34;组&#34;
只有一行,我假设您使用单独的行