- Added new
renamemethod, similar to dplyr's rename, that automatically changes the mapping of the log if the rename concerns any mapping variables. - Added new
countmethod, to increase compatibility with dplyr.countwill automatically convert thelogobject to atibble.
group_by(.data, ..., .add = F)now works correctly ongrouped_eventlog. Previously, applyinggroup_by()to agrouped_eventlogreverted 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.
- Added new functions to check if an object
xinherits 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)).
group_by(.data, ..., .add = F)now works correctly ongrouped_eventlog. Previously, applyinggroup_by()to agrouped_eventlogreverted 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.
- Added a
NEWS.mdfile to track changes to the package. - Added GitHub Action (
pkgdown). - Updated
README.md.