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:
dataLoader()
the costructor
load.csv( ... )
loads the csv file into the dataLoader
object
load.data.frame()
loads a data.frame into the dataLoader
object
getData()
return the processed, previously-loaded, data
addDictionary()
add a dictionary in order, afterward, to translate or group some event name
You can use the cited methods directly on the object, (they are made available as element of the object list) or can be invocked using the 'wrapping function', with the prefix 'DL.'
The consturctor admit the following parameters:
verbose.mode are some notification wished, during the computation? The defaul value is true
1 2 | dataLoader(verbose.mode = TRUE, max.char.length.label = 50,
save.memory = FALSE)
|
verbose.mode |
boolean. If TRUE some messages will appear in console, during the computation; otherwise the computation will be silent. |
max.char.length.label |
numeric. It defines the max length of the event name strings |
save.memory |
boolean. If TRUE, dataLoader() avoid to keep in memory the entire original csv. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.