我正在尝试在dplyr
summarise
中使用用户定义的函数。
我正在处理的数据集可以是downloaded here,并使用以下代码准备好使用:
raw_data <- read.csv("Output/FluxN2O.csv", stringsAsFactors = FALSE)
test_data <- raw_data %>% mutate(Chamber = as.factor(Chamber), Treatment = as.factor(Treatment. Time = as.POSIXct(Time, format = "%Y-%m-%d %H:%M:%S")))
以下是head()
> head(test_data)
Time Chamber_closed Slope R_Squared Chamber Treatment Flux_N2O Time_relative Time_cumulative
1 2016-05-03 00:08:21 10.23 8.873843e-07 0.6941540 10 AN 0.7567335 0.0 0.0
2 2016-05-03 06:10:21 12.24 -5.540907e-06 0.7728001 12 U -4.7251117 362.0 362.0
3 2016-05-03 06:42:21 10.24 -5.260463e-06 0.9583473 10 AN -4.4859581 32.0 394.0
4 2016-05-03 07:12:21 9.23 -5.320429e-06 0.7602987 9 IU -4.5370951 30.0 424.0
5 2016-05-03 07:42:21 7.23 3.135043e-06 0.7012436 7 U 2.6734669 30.0 454.0
6 2016-05-03 20:10:15 5.24 5.215290e-06 0.7508935 5 AN 4.4474364 747.9 1201.9
对于因子Chamber
的每个级别,我想计算当x = Time_cumulative
和y = Flux_n2O
时曲线下面积。
我可以使用传递给by
调用的以下函数来执行此操作:
cum_ems_func <- function(x) {last(cumtrapz(x$Time_cumulative, x$Flux_N2O))}
by(test_data, test_data$Chamber, cum_ems_func)
但是,我更倾向于使用dpylr
,因为需要进行进一步的数据处理,这将使用summarise
输出最简单。
当我尝试使用dplyr
方法
test_data %>%
group_by(Chamber) %>%
summarise(cumulative_emmission = last(cumtrapz(Time_cumulative, Flux_N2O)))
我收到以下错误:
Error: Unsupported vector type language
我还尝试在汇总调用中使用用户定义的函数cums_ems_func
,结果出错:
test_data %>%
group_by(Chamber) %>%
summarise(cumulative_emmission = cum_ems_func())
Error: argument "x" is missing, with no default
有人可以指出我正确的方向吗?
答案 0 :(得分:0)
如果我理解正确,那么以下其中一项应该完成这项工作
library(pracma); library(dplyr)
test_data <- test_data %>% group_by(Chamber) %>%
mutate(emission=max(cumtrapz(Time_cumulative, Flux_N2O))) %>% ungroup
### or
test_data <- test_data %>% group_by(Chamber) %>%
mutate(cumulative_emission=cumtrapz(Time_cumulative, Flux_N2O)) %>% ungroup