R/throughput_time_log.R

Defines functions throughput_time_log

throughput_time_log <- function(eventlog,
								 units) {

	throughput_time_case(eventlog, units = units) -> raw


	raw %>%
		pull(throughput_time) %>%
		as.double(units = units) %>%
		summary_statistics() -> output


	attr(output, "raw") <- raw

	return(output)
}
gertjanssenswillen/edeaR documentation built on July 22, 2019, 7:08 p.m.