process_mining 0.6.1

Process Mining library for working with (object-centric) event data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core modules for process mining

pub use chrono;
pub mod event_data;

/// IO Traits
pub mod io;
/// Bytes of a tabular data file, held for an extraction to read.
pub mod tabular_source;

pub mod process_models;

pub use event_data::case_centric::EventLog;
pub use event_data::object_centric::OCEL;
pub use process_models::case_centric::petri_net::PetriNet;