logInspector: A class to perform a preliminary analysis on sequential data...

Description Usage Examples

Description

This class aims at inspecting an event-log for descriptive analysis purposes. The public methods are:

In order to better undestand the use of such methods, please visit: www.pminer.info

Parameter for logInspector::plotEventStats() and logInspector::plotProcessStats() methods is:

Usage

1

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## Not run: 
# -----------------------------------------------
#  USING THE METHODS of the class
# -----------------------------------------------
obj.L<-dataLoader();   # create a Loader

# Load a .csv using "DES" and "ID" as column names to indicate events
# and Patient's ID
obj.L$load.csv(nomeFile = "../otherFiles/test_02.csv",
IDName = "ID",EVENTName = "DES",dateColumnName = "DATA")

# now create an object logInspector
obj.logI<-logInspector();

# load the data into logInspector object
obj.logI$loadDataset( obj.L$getData() );

# get event-related descriptive statistics
obj.logI$getEventStats();

# get process-related descriptive statistics
obj.logI$getProcessStats();

# plot event-related descriptive statistics
obj.logI$plotEventStats();

# plot process-related descriptive statistics
obj.logI$plotProcessStats()

## End(Not run)

pMineR documentation built on May 2, 2019, 9:34 a.m.

Related to logInspector in pMineR...