dataLoader: Load the event-logs

Description Usage Arguments Examples

Description

A loader for csv based log files. It also calculates the footprint table, transition matrix probabilities, and presents data in different shapes. The public methods are:

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

The consturctor admit the following parameters: verbose.mode are some notification wished, during the computation? The defaul value is true

Usage

1
dataLoader(verbose.mode = TRUE)

Arguments

verbose.mode

boolean. If TRUE some messages will appear in console, during the computation; otherwise the computation will be silent.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Not run: 

# create a Loader
obj.L<-dataLoader();   

# Load a .csv 
obj.L$load.csv(nomeFile = "../otherFiles/mammella.csv",
IDName = "CODICE_SANITARIO_ADT",
EVENTName = "DESC_REPARTO_RICOVERO",
dateColumnName = "DATA_RICOVERO")

# return the results
obj.L$getData()


## End(Not run)

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

Related to dataLoader in pMineR...