ocel-transform 0.1.1

Recipe-driven OCEL 2.0 log transformation: clean, rename, and filter event logs before mining
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Recipe-driven OCEL 2.0 log transformation.
//!
//! A recipe is a declarative list of steps applied in order; the result is a
//! new, valid OCEL log. Deterministic only: no step invents data, and every
//! step reports what it changed.

pub mod apply;
pub mod recipe;

pub use apply::{apply, preview, DroppedEvent, StepPreview, StepReport, TransformError};
pub use recipe::{AliasTable, EventPredicate, Recipe, Step, TimeWindow};