Changelog
Source:NEWS.md
bupaR 0.5.3
CRAN release: 2023-04-02
Features
- Added new
rename
method, similar to dplyr’s rename, that automatically changes the mapping of the log if the rename concerns any mapping variables. - Added new
count
method, to increase compatibility with dplyr.count
will automatically convert thelog
object to atibble
.
Bug Fixes
-
group_by(.data, ..., .add = F)
now works correctly ongrouped_eventlog
. Previously, applyinggroup_by()
to agrouped_eventlog
reverted it to adata.frame
, which prevented the application of further bupaR functions on the returned value. - The
"raw"
attribute of metrics in edeaR (e.g.throughput_time
) containing the original data is now kept after applyinggroup_by()
. This can be useful for further analyses on the output of metrics and can be accessed usingattr(log, "raw")
. - Fixed bug in
add_start_activity()
andadd_end_activity()
which failed when applied to anactivitylog
. - Fixed bug in
activitylog
. Failed when not both start and complete columns where available. - Fixed bug in
assign_instance_id
. Failed when data had a column with the namestatus
.
bupaR 0.5.1
CRAN release: 2022-09-29
Features
- Added new functions to check if an object
x
inherits from a particular event data class (is.log(x)
,is.eventlog(x)
,is.activitylog(x)
,is.grouped_log(x)
,is.grouped_eventlog(x)
,is.grouped_actiivtylog(x)
).
Bug Fixes
-
group_by(.data, ..., .add = F)
now works correctly ongrouped_eventlog
. Previously, applyinggroup_by()
to agrouped_eventlog
reverted it to adata.frame
, which prevented the application of further bupaR functions on the returned value. - The
"raw"
attribute of metrics in edeaR (e.g.throughput_time
) containing the original data is now kept after applyinggroup_by()
. This can be useful for further analyses on the output of metrics and can be accessed usingattr(log, "raw")
. - Fixed bug in
add_start_activity()
andadd_end_activity()
which failed when applied to anactivitylog
. - Fixed bug in
activitylog
. Failed when not both start and complete columns where available. - Fixed bug in
assign_instance_id
. Failed when data had a column with the namestatus
.