我有一个数据框,称为Paper
每年的论文引用,包括他们的出版年份以及一些元数据(期刊、作者)。看起来像:
Paper = read.table(textConnection("Meta Publication.Year X1999 X2000 X2001 X2002 X2003
A 1999 0 1 1 1 2
B 2000 0 0 3 1 0
C 2000 0 0 1 0 1
C 2001 0 0 0 1 5
D 1999 0 1 0 2 2"), header = TRUE)
我想计算出版两年后的引用总和,并将此列表附加到Paper
. 但是,我对每一年都不感兴趣,只对列表中指定的那些感兴趣Years
。我的步骤(下面的代码)如下: Order Paper
acc。Publication.Year
,选择Publication.Year
第一年的 X 行(即1999X2000
年X2001
),计算总和,将总和绑定在一起,cbind 到Paper
.
是否有(更多)优雅的方式来做到这一点?
Years = as.numeric(c(1999, 2000))
Paper <- Paper[with(Paper, order(Paper[["Publication.Year"]])), ]
Two.Year = as.numeric()
for (i in Years){
Mat <- subset(Paper, Paper[["Publication.Year"]]==i, select=c("Publication.Year", paste("X", i+1, sep=""), paste("X", i+2, sep="")))
temp <- rowSums(Mat[,-1])
Two.Year <- c(Two.Year, temp)
rm(temp)
}
Paper <- cbind(Paper, Two.Year)
rm(Two.Year)
rm(Jahre)
Paper <- subset(Paper, select=c("Meta","Publication.Year","Two.Year")) # Because in the end I only need the citation number