process_map: Process Map

Description Usage Arguments Methods (by class) Examples

Description

A function for creating a process map of an event log.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
process_map(eventlog, type, sec, type_nodes, type_edges, sec_nodes,
  sec_edges, rankdir, render, fixed_edge_width, fixed_node_pos, ...)

## S3 method for class 'eventlog'
process_map(eventlog, type = frequency("absolute"),
  sec = NULL, type_nodes = type, type_edges = type,
  sec_nodes = sec, sec_edges = sec, rankdir = "LR", render = T,
  fixed_edge_width = F, fixed_node_pos = NULL, ...)

## S3 method for class 'grouped_eventlog'
process_map(eventlog,
  type = frequency("absolute"), sec = NULL, type_nodes = type,
  type_edges = type, sec_nodes = sec, sec_edges = sec,
  rankdir = "LR", render = T, fixed_edge_width = F,
  fixed_node_pos = NULL, ...)

Arguments

eventlog

The event log object for which to create a process map

type

A process map type, which can be created with the functions frequency, performance and custom. The first type focusses on the frequency aspect of a process, while the second one focussed on processing time. The third one allows custom attributes to be used.

sec

A secondary process map type. Values are shown between brackets.

type_nodes

A process map type to be used for nodes only, which can be created with the functions frequency and performance. The first type focusses on the frequency aspect of a process, while the second one focussed on processing time.

type_edges

A process map type to be used for edges only, which can be created with the functions frequency and performance. The first type focusses on the frequency aspect of a process, while the second one focussed on processing time.

sec_nodes

A secondary process map type for nodes only.

sec_edges

A secondary process map type for edges only.

rankdir

The direction in which to layout the graph: "LR" (default),"TB", "BT", "RL", corresponding to directed graphs drawn from top to bottom, from left to right, from bottom to top, and from right to left, respectively.

render

Whether the map should be rendered immediately (default), or rather an object of type dgr_graph should be returned.

fixed_edge_width

If TRUE, don't vary the width of edges.

fixed_node_pos

When specified as a data.frame with three columns 'act', 'x', and 'y' the position of nodes is fixed. Note that his can only be used with the 'neato' layout engine.

...

Deprecated arguments

Methods (by class)

Examples

1
2
3
4
5
6
## Not run: 
library(eventdataR)
data(patients)
process_map(patients)

## End(Not run)

gertjanssenswillen/processmapR documentation built on June 15, 2019, 2:46 p.m.