作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要调整一个代码,它与我的数据框完美配合(但使用另一个设置),以便从列 Day 中选择一个 2 天的时间窗口。特别是我对第 0 天之前的 1 天(即 i - 1 和 i,其中 i 是感兴趣的日期)及其包含在列 Count 中的 (i - 1) 值感兴趣必须添加到第 0 天(i ) col 计数。
这是我的数据框的示例:
df <- read.table(text = "
Station Day Count
1 33012 12448 4
2 35004 12448 4
3 35008 12448 4
4 37006 12448 4
5 21009 4835 3
6 24005 4835 3
7 27001 4835 3
8 25005 12447 3
9 29001 12447 3
10 29002 12447 3
11 29002 12446 3
12 30001 12446 3
13 31002 12446 3
14 47007 4834 2
15 49002 4834 2
16 47004 12445 1
17 51001 12449 1
18 51003 4832 1
19 52004 4836 1", header = TRUE)
Station Day Count
1 33012 12448 7
2 35004 12448 7
3 35008 12448 7
4 37006 12448 7
5 21009 4835 5
6 24005 4835 5
7 27001 4835 5
8 29002 12446 4
9 30001 12446 4
10 31002 12446 4
11 51001 12449 1
12 51003 4832 1
13 52004 4836 1
14 25005 12447 0
15 29001 12447 0
16 29002 12447 0
17 47007 4834 0
18 49002 4834 0
19 47004 12445 0
for (i in unique(df$Day)) {
temp <- df$Count[df$Day == i]
if(length(temp > 0)) {
condition1 <- df$Day == i - 1
if (any(condition1)) {
df$Count[df$Day == i] <- mean(df$Count[condition1]) + df$Count[df$Day == i]
df$Count[condition1] <- 0
}
}
}
最佳答案
以下对您提供的示例数据执行您想要的操作
for (i in unique(df$Day)) {
temp <- df$Count[df$Day == i]
if (any(temp > 0)) {
condition1 <- df$Day == i - 1
condition1[which(df$Day == i - 1) < max(which(df$Day == i))] <- FALSE
if (any(condition1)) {
df$Count[df$Day == i] <- mean(df$Count[condition1]) + df$Count[df$Day == i]
df$Count[condition1] <- 0
}
}
}
print(df[order(df$Count, decreasing = TRUE),])
## Station Day Count
##1 33012 12448 7
##2 35004 12448 7
##3 35008 12448 7
##4 37006 12448 7
##5 21009 4835 5
##6 24005 4835 5
##7 27001 4835 5
##11 29002 12446 4
##12 30001 12446 4
##13 31002 12446 4
##17 51001 12449 1
##18 51003 4832 1
##19 52004 4836 1
##8 25005 12447 0
##9 29001 12447 0
##10 29002 12447 0
##14 47007 4834 0
##15 49002 4834 0
##16 47004 12445 0
Day
中的值。列作为时间顺序。因此,对于
df$Day = 12449
没有前一天需要考虑,因为所有行都带有
df$Day = 12448
在它之前。结果,
Count
为
df$Day = 12449
保持在
1
,更重要的是,
Counts
对于所有具有
df$Day = 12448
的行处理后不归零
df$Day = 12449
.
condition1
所以我们设置为
FALSE
df$Day == i - 1
的所有行(前一天)在
df$Day == i
的最高行之前(感兴趣的日子)使用该行
condition1[which(df$Day == i - 1) < max(which(df$Day == i))] <- FALSE
Day
的值相同数据框中的列与示例数据中的行块一样集中在一起。否则,您的
for
循环
unique(df$Day)
需要完全重新考虑并替换为行上的循环,以便跟踪数据框中感兴趣的日期的当前行。
if(length(temp > 0)) {
Count
大于
0
对于感兴趣的日子。然而,R 中的条件运算符被向量化,使得
temp > 0
返回与输入长度相同的 bool 值向量
temp
.因此,
length(temp > 0)
除非
temp
,否则将始终返回正数本身的长度
0
(即,空)。为了达到您的目的,该行更改为
if(any(temp > 0)) {
if (any(temp > 0)) {...}
中。阻塞到一个函数中,调用它
accumulate.mean.count
,并使用
sapply
将此函数应用于前几天的集合.修改内容为:
accumulate.mean.count <- function(this.day, lag) {
condition1 <- df$Day == this.day - lag
condition1[which(df$Day == this.day - lag) < max(which(df$Day == this.day))] <- FALSE
if (any(condition1)) {
df$Count[df$Day == this.day] <<- mean(df$Count[condition1]) + df$Count[df$Day == this.day]
df$Count[condition1] <<- 0
}
}
lags <- seq_len(30)
for (i in unique(df$Day)) {
temp <- df$Count[df$Day == i]
if (any(temp > 0)) {
sapply(lags, accumulate.mean.count, this.day=i)
}
}
print(df[order(df$Count, decreasing = TRUE),])
lag
是当天(即滞后)之前的天数。一个 lag = 1
表示前一天,以及 lag = 2
表示前两天,以此类推 lags
是这些的集合。在这里,lags <- seq_len(30)
是来自 1
的序列至 30
在哪个accumulate.mean.count
已应用,这就是您想要的。见 this有关 *apply
的出色概述R 函数族。请注意 lags
不一定是一个序列,而只是一个整数的集合,例如 c(1, 5, 10)
前一天、前 5 天和前 10 天。如果您想在 future 几天滚动,它甚至不必为正,但不应为零。 df$Count
,这是一个超出 accumulate.mean.count
范围的变量, 在函数内 accumulate.mean.count
需要 <<-
而不是 <-
.见 this解释并注意使用 <<-
的危险那里提到。 lags <- seq_len(30)
, 但对于
seq_len(1)
,我恢复了原来的结果,对于
seq_len(2)
, 我有
## Station Day Count
##1 33012 12448 10
##2 35004 12448 10
##3 35008 12448 10
##4 37006 12448 10
##5 21009 4835 5
##6 24005 4835 5
##7 27001 4835 5
##16 47004 12445 1
##17 51001 12449 1
##18 51003 4832 1
##19 52004 4836 1
##8 25005 12447 0
##9 29001 12447 0
##10 29002 12447 0
##11 29002 12446 0
##12 30001 12446 0
##13 31002 12446 0
##14 47007 4834 0
##15 49002 4834 0
关于r - For 循环 - 从日列中选择时间窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38394092/
我是一名优秀的程序员,十分优秀!