Title: | Read and Write XES Files |
---|---|
Description: | Read and write XES Files to create event log objects used by the 'bupaR' framework. XES (Extensible Event Stream) is the `IEEE` standard for storing and sharing event data (see <http://standards.ieee.org/findstds/standard/1849-2016.html> for more info). |
Authors: | Gert Janssenswillen [aut, cre], BenoƮt Depaire [ctb] |
Maintainer: | Gert Janssenswillen <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.2.3.9000 |
Built: | 2025-02-17 02:59:32 UTC |
Source: | https://github.com/gertjanssenswillen/xesreadr |
Extracts case attributes from a xes-file.
case_attributes_from_xes(xesfile = file.choose())
case_attributes_from_xes(xesfile = file.choose())
xesfile |
Reference to a .xes file, conforming to the xes-standard. |
Extracts eventlog from a xes-file.
eventlog_from_xes(xesfile = file.choose())
eventlog_from_xes(xesfile = file.choose())
xesfile |
Reference to a .xes file, conforming to the xes-standard. |
Extracts eventlog from a xes-file.
read_xes(xesfile = file.choose(), validate = TRUE)
read_xes(xesfile = file.choose(), validate = TRUE)
xesfile |
Reference to a .xes file, conforming to the xes-standard. |
validate |
When 'TRUE' some basic checks are run on the contents of the event log such as that activity instances are not connected to more than one case or activity. Using 'FALSE' improves the performance by skipping those checks and allows to import XES files that do not conform to bupaR requirements. |
Extracts case attributes from a xes-file.
read_xes_cases(xesfile = file.choose())
read_xes_cases(xesfile = file.choose())
xesfile |
Reference to a .xes file, conforming to the xes-standard. |
Function for writing xes-file
write_xes(eventlog, xesfile = file.choose(), case_attributes = NULL)
write_xes(eventlog, xesfile = file.choose(), case_attributes = NULL)
eventlog |
An event log object |
xesfile |
Destination file |
case_attributes |
List of columns containing case_attributes |
Functions for reading and writing XES-files. XES (eXtensible Event Stream) is the IEEE standard for storing and sharing event data (see <http://standards.ieee.org/findstds/standard/1849-2016.html> for more info)