Skip to main content

bindings

process_mining::bindings

Functions in this Module(6)

ocel_type_stats

Compute statistics on object/event types in the OCEL
Source
fn ocel_type_stats(ocel*: SlimLinkedOCEL)OCELTypeStats

Arguments

Returns

import r4pm
ocel = r4pm.import_item('SlimLinkedOCEL','path/to/file')

res = r4pm.bindings.ocel_type_stats(ocel)
Defined inprocess_mining/src/bindings/mod.rs:562

test_some_inputs

This is a test function.
This should be bold, this is italic, and this code.
Source
fn test_some_inputs(s*: String, n*: i64<uint>, i*: i32, f*: f64, b*: bool)String

Arguments

Returns

import r4pm


res = r4pm.bindings.test_some_inputs('example', 1, 1, 0.2, False)
Defined inprocess_mining/src/bindings/mod.rs:589

num_events

Get the number of events in an OCEL
Source
fn num_events(ocel*: SlimLinkedOCEL)i64<uint>

Arguments

Returns

import r4pm
ocel = r4pm.import_item('SlimLinkedOCEL','path/to/file')

res = r4pm.bindings.num_events(ocel)
Defined inprocess_mining/src/bindings/mod.rs:548

num_objects

Get the number of objects in an OCEL
Source
fn num_objects(ocel*: SlimLinkedOCEL)i64<uint>

Arguments

Returns

import r4pm
ocel = r4pm.import_item('SlimLinkedOCEL','path/to/file')

res = r4pm.bindings.num_objects(ocel)
Defined inprocess_mining/src/bindings/mod.rs:543