meta.dataLoader: Load the event-logs serializing many dataLoaders objs

Description Usage Arguments Examples

Description

This class is more abstract than dataLoader and provide some facilities, in particular to cope with dictionaries and tranlations. Because it handles, internally, a set of dataLoader objects, any dataLoader object must be referred by 'view'.

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
meta.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
17
18
19
20
21
22
23
24
25
26
27
## Not run: 

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

# create a view
obj.L$createView(view.name = "mammella")
obj.L$createView(view.name = "retto")

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

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

# get the data from the view 'retto'
aaa <- obj.L$getData(view = "retto")



## End(Not run)

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