Description Usage Arguments Value Note See Also Examples
View source: R/loadFile.R View source: R/utils.R
A general function to read raw tracking data and meta information from a .csv result file outputted by UbiTrail.
1 | rubitLoadFile(FILE, verbose = FALSE)
|
FILE |
a CSV result file outputted by UbiTrail. |
verbose |
logical; if TRUE, the function will print messages at every step. |
A list of numerical matrices with each matrix corresponding to an area.
The returned list contains a numerical matrix for each area. The attributes of list contain metadata and additional information is present in each of the attributes of each matrix.
rubitBasic
and rubitMetrics
for more further processing and analysis of tracking data.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Locate raw data example including with package
FILE <- system.file("extdata", "tenebrio_ubitrail.csv.gz", package = "rubitrail")
tenebrio_raw <- rubitLoadFile(FILE)
###See general metadata:
attributes(tenebrio_raw)
###See how many reads in each area:
summary(tenebrio_raw)
###See informations about the area named '08':
attributes(tenebrio_raw[['08']])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.