我使用sparklyr来操纵一些数据。 给出了,
a<-tibble(id = rep(c(1,10), each = 10),
attribute1 = rep(c("This", "That", 'These', 'Those', "The", "Other", "Test", "End", "Start", 'Beginning'), 2),
value = rep(seq(10,100, by = 10),2),
average = rep(c(50,100),each = 10),
upper_bound = rep(c(80, 130), each =10),
lower_bound = rep(c(20, 70), each =10))
我想使用&#34;收集&#34;操纵数据,如下所示:
b<- a %>%
gather(key = type_data, value = value_data, -c(id:attribute1))
然而,&#34;聚集&#34;不适用于sparklyr。我见过有些人使用sdf_pivot模仿&#34;聚集&#34; (例如How to use sdf_pivot() in sparklyr and concatenate strings?)但在这种情况下我无法看到如何使用它。
有没有人有想法?
干杯!
答案 0 :(得分:4)
这是一个模仿sparklyr中gather
的函数。这将收集给定的列,同时保持其他所有内容完整,但如果需要,可以轻松扩展。
# Function
sdf_gather <- function(tbl, gather_cols){
other_cols <- colnames(tbl)[!colnames(tbl) %in% gather_cols]
lapply(gather_cols, function(col_nm){
tbl %>%
select(c(other_cols, col_nm)) %>%
mutate(key = col_nm) %>%
rename(value = col_nm)
}) %>%
sdf_bind_rows() %>%
select(c(other_cols, 'key', 'value'))
}
# Example
spark_df %>%
select(col_1, col_2, col_3, col_4) %>%
sdf_gather(c('col_3', 'col_4'))
答案 1 :(得分:3)
您可以使用map
/ explode
sdf_gather <- function(data, key = "key", value = "value", ...) {
cols <- list(...) %>% unlist()
# Explode with map (same as stack) requires multiple aliases so
# dplyr mutate won't work for us here.
expr <- list(paste(
"explode(map(",
paste("'", cols, "',`", cols, "`", sep = "", collapse = ","),
")) as (", key, ",", value, ")", sep = ""))
keys <- data %>% colnames() %>% setdiff(cols) %>% as.list()
data %>%
spark_dataframe() %>%
sparklyr::invoke("selectExpr", c(keys, expr)) %>%
sdf_register()
}
或Hive stack
function:
sdf_gather <- function(data, key = "key", value = "value", ...) {
cols <- list(...) %>% unlist()
expr <- list(paste(
"stack(", length(cols), ", ",
paste("'", cols, "',`", cols, "`", sep="", collapse=","),
") as (", key, ",", value, ")", sep=""))
keys <- data %>% colnames() %>% setdiff(cols) %>% as.list()
data %>%
spark_dataframe() %>%
sparklyr::invoke("selectExpr", c(keys, expr)) %>%
sdf_register()
}
两者都应该给出相同的结果:
long <- sdf_gather(
df, "my_key", "my_value",
"value", "average", "upper_bound", "lower_bound")
long
# Source: table<sparklyr_tmp_7b8f5989ba4d> [?? x 4]
# Database: spark_connection
id attribute1 my_key my_value
<dbl> <chr> <chr> <dbl>
1 1 This value 10
2 1 This average 50
3 1 This upper_bound 80
4 1 This lower_bound 20
5 1 That value 20
6 1 That average 50
7 1 That upper_bound 80
8 1 That lower_bound 20
9 1 These value 30
10 1 These average 50
# ... with more rows
可以修改以支持非标准评估。
请注意,这两种方法都需要同类色谱柱。
备注强>
explode
版本生成以下查询:
SELECT id, attribute1,
explode(map(
'value', `value`,
'average', `average`,
'upper_bound', `upper_bound`,
'lower_bound', `lower_bound`)) as (my_key,my_value)
FROM df
和optimized logical execution plan
org.apache.spark.sql.catalyst.plans.logical.Generate
Generate explode(map(value, value#16, average, average#17, upper_bound, upper_bound#18, lower_bound, lower_bound#19)), [2, 3, 4, 5], false, [my_key#226, my_value#227]
+- InMemoryRelation [id#14, attribute1#15, value#16, average#17, upper_bound#18, lower_bound#19], StorageLevel(disk, memory, deserialized, 1 replicas)
+- Scan ExistingRDD[id#14,attribute1#15,value#16,average#17,upper_bound#18,lower_bound#19]
stack
版本生成
SELECT id, attribute1,
stack(4,
'value', `value`,
'average', `average`,
'upper_bound', `upper_bound`,
'lower_bound', `lower_bound`) as (my_key,my_value)
FROM df
和
org.apache.spark.sql.catalyst.plans.logical.Generate
Generate stack(4, value, value#16, average, average#17, upper_bound, upper_bound#18, lower_bound, lower_bound#19), [2, 3, 4, 5], false, [my_key#323, my_value#324]
+- InMemoryRelation [id#14, attribute1#15, value#16, average#17, upper_bound#18, lower_bound#19], StorageLevel(disk, memory, deserialized, 1 replicas)
+- Scan ExistingRDD[id#14,attribute1#15,value#16,average#17,upper_bound#18,lower_bound#19]
生成的SQL中的单引号值(即'value'
)是文字字符串,而反引号值表示列引用。
答案 2 :(得分:0)
不,这里没有getArguments()
回答。
我也在等待一个更好的。
pivot
结果
library(sparklyr)
library(rlang)
library(dplyr)
#Given
sparkDf_a <- copy_to(dest = sc, df = a)
helper_fn <- function(df, key, val, ...){
quo_col <- enquo(val)
df %>%
dplyr::group_by(id, attribute1) %>%
dplyr::select(!!quo_col) %>%
mutate(type_data = key,
value_data = !!quo_col) %>%
dplyr::select(-!!quo_col)
}
b <- sdf_bind_rows(
helper_fn(df = sparkDf_a, key = 'value', val = value),
helper_fn(df = sparkDf_a, key = 'average', val = average),
helper_fn(df = sparkDf_a, key = 'upper_bound', val = upper_bound),
helper_fn(df = sparkDf_a, key = 'lower_bound', val = lower_bound)
)