我要解决的问题是将具有相似名称的列逐行相乘。 考虑以下示例df:
library(tidyverse)
library(lubridate)
sample_df <- data.frame(stringsAsFactors=FALSE,
Date = c("1/03/2018 0:00", "1/03/2018 4:00", "1/03/2018 8:00"),
EUR_USD_Open = c(0.892093896, 0.891937999, 0.891744285),
EUR_USD_High = c(0.89245654, 0.892283601, 0.892616906),
EUR_USD_Low = c(0.891803229, 0.89117644, 0.891483374),
EUR_USD_Close = c(0.891942211, 0.891748495, 0.892405914),
USD_JPY_Open = c(1.887128916, 1.887340614, 1.887501691),
USD_JPY_High = c(1.887470444, 1.887677094, 1.887746746),
USD_JPY_Low = c(1.886890576, 1.887246812, 1.887167418),
USD_JPY_Close = c(1.887338209, 1.887504095, 1.887210726),
USD_CHF_Open = c(0.997952231, 0.997969721, 0.997971242),
USD_CHF_High = c(0.99799974, 0.997989483, 0.998035047),
USD_CHF_Low = c(0.997949949, 0.997933211, 0.997968961),
USD_CHF_Close = c(0.997970102, 0.997970862, 0.99799936),
USD_SEK_Open = c(1.092929855, 1.092928195, 1.092853491),
USD_SEK_High = c(1.092993997, 1.092943686, 1.093004716),
USD_SEK_Low = c(1.09291292, 1.092803475, 1.092767679),
USD_SEK_Close = c(1.09292825, 1.09285338, 1.092896312),
USD_CAD_Open = c(1.022980632, 1.022990785, 1.022967577),
USD_CAD_High = c(1.023079216, 1.023053854, 1.02313861),
USD_CAD_Low = c(1.022959598, 1.022919695, 1.022958873),
USD_CAD_Close = c(1.02299151, 1.022966852, 1.023073419),
GBP_USD_Open = c(0.962767254, 0.962746434, 0.962811407),
GBP_USD_High = c(0.96287142, 0.962841409, 0.962998227),
GBP_USD_Low = c(0.962725618, 0.962629918, 0.962640732),
GBP_USD_Close = c(0.962747267, 0.962806408, 0.96284391)
) %>%
mutate(Date = dmy_hm(Date))
对于每个日期,我想将所有列与Open
,Close
等相乘。
最终输出应如下所示:
output_df <- data.frame(stringsAsFactors=FALSE,
Date = c("1/03/2018 0:00", "1/03/2018 4:00", "1/03/2018 8:00"),
Open = c(1.808434992, 1.808329582, 1.808051308),
High = c(1.810060115, 1.80970432, 1.811075804),
Low = c(1.807469953, 1.806079386, 1.806720451),
Close = c(1.808339444, 1.808050604, 1.809484003)
)%>%
mutate(Date = dmy_hm(Date))
有什么想法可以有效地做到这一点吗?
对DT或Tidyverse解决方案感到满意。
答案 0 :(得分:3)
您可以在data.table
中进行尝试:
setDT(sample_df)
sample_df[ , melt(.SD, id.vars = 'Date', variable.name = 'x',
measure.vars = patterns(Open = 'Open$', Close = 'Close$',
High = 'High$', Low = 'Low$'))
][ , lapply(.SD, prod), by = Date, .SDcols = !'x']
# Date Open Close High Low
# 1: 2018-03-01 00:00:00 1.808435 1.808339 1.810060 1.807470
# 2: 2018-03-01 04:00:00 1.808330 1.808051 1.809704 1.806079
# 3: 2018-03-01 08:00:00 1.808051 1.809484 1.811076 1.806720
melt
重塑您的数据 long ; patterns
中的measure.vars
将与每种模式匹配的所有列“堆叠”到patterns
中提供的命名为单个列中。
variable.name
只是这里的障碍,因此我们将其重命名为x
,以便更简洁地在下一步中将其排除(默认情况下,其命名为variable
,我们必须做.SDcols = !'variable'
。
lapply(.SD, prod)
进行乘法运算-在每个Date
中,我们希望将所有值相乘;这正是prod
的作用。
在不进行整形的情况下,最好的选择是像这样的循环和Reduce
方法:
out = data.table(Date = unique(sample_df$Date), key = 'Date')
cols = c('Open', 'Close', 'High', 'Low')
for (col in cols) {
prod_dt = sample_df[ , .(Date, v = Reduce(`*`, .SD)), .SDcols = patterns(col)]
# joins automatically since out is keyed
out[prod_dt, (col) := i.v]
}
答案 1 :(得分:2)
在基数R中,我们可以使用split.default
来分割名称的相似性
cbind(sample_df[1], sapply(split.default(sample_df[-1],
sub(".*_", "", names(sample_df)[-1])), Reduce, f = `*`))
# Date Close High Low Open
#1 2018-03-01 00:00:00 1.808 1.810 1.807 1.808
#2 2018-03-01 04:00:00 1.808 1.810 1.806 1.808
#3 2018-03-01 08:00:00 1.809 1.811 1.807 1.808
答案 2 :(得分:2)
如何使用tempdf <- sample_df[grepl('Open', names(sample_df))]
然后
for (ii in 1:nrow(tempdf)) { sample_df$Open[[ii]] <- prod(tempdf[ii,])}
绝对不是最快或最干净的,但应该可以完成工作。
答案 3 :(得分:2)
转换为长格式,将名称分隔成仅保留第三个(最后一个)的部分,执行乘法并转换回宽格式。
library(dplyr)
library(tidyr)
sample_df %>%
pivot_longer(-Date) %>%
separate(name, c(NA, NA, "name")) %>%
group_by(Date, name) %>%
summarize(value = prod(value)) %>%
ungroup %>%
pivot_wider
给予:
# A tibble: 3 x 5
Date Close High Low Open
<dttm> <dbl> <dbl> <dbl> <dbl>
1 2018-03-01 00:00:00 1.81 1.81 1.81 1.81
2 2018-03-01 04:00:00 1.81 1.81 1.81 1.81
3 2018-03-01 08:00:00 1.81 1.81 1.81 1.81
答案 4 :(得分:2)
在代码行方面不是最快的方法,但这也可以
library(tidyverse)
sample_df %>% pivot_longer(-Date,"Type",'Value') %>% # convert to long format
mutate(type_var=case_when(str_detect(Type, 'Open') ~ 'Open',
str_detect(Type, 'Close') ~ 'Close',
str_detect(Type, 'High') ~ 'High',
str_detect(Type, 'Low') ~ 'Low',
TRUE ~ 'Other')) %>% # identify type of value
group_by(Date,type_var) %>%
summarise(value=prod(value)) %>% # multiply all by group
pivot_wider(id_cols='Date',names_from=type_var,values_from=value) # convert lines into columns
答案 5 :(得分:1)
另一个data.table
替代方案:
setDT(sample_df)
sample_df[, melt(.SD, id.vars = "Date")
][, prod(value), by = .(Date, substring(variable, 9, 13)) # Or tstrsplit(variable, "_")[[3]]
][, dcast(.SD, Date ~ substring, value.var = "V1")]
Date Close High Low Open
1: 2018-03-01 00:00:00 1.808339 1.810060 1.807470 1.808435
2: 2018-03-01 04:00:00 1.808051 1.809704 1.806079 1.808330
3: 2018-03-01 08:00:00 1.809484 1.811076 1.806720 1.808051