-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhdf5_to_df.R
50 lines (38 loc) · 1.1 KB
/
hdf5_to_df.R
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#' Convert TOBII-generated HDF5 files to dataframe
#'
#' A function to convert TOBII-generated hdf5 files to a dataframe
#'
#' @param filename the hdf5 file generated from TOBII
#'
#' @return A list of dataframes collected from the eyetracker content, if only one eyetracking event is present, return this as a single dataframe
#' @export
#'
#' @import hdf5r
#'
#' @examples
#' \dontrun{
#' raw_data <- hdf5_to_df("example_TOBII.hdf5")
#' }
hdf5_to_df <- function(filename) {
file.h5 <- H5File$new(filename, mode="a") # 'a' mode is open
#get the tracking data
eyetracking_data <- file.h5[['data_collection']][['events']][['eyetracker']]
data_out <- list()
for (name in names(eyetracking_data)) {
temp <- eyetracking_data[[name]]
if (temp$dims != 0) {
temp <- temp[1:temp$dims]
} else {
temp <- NULL
}
data_out[[name]] <- temp
}
if (length(data_out) == 0) {
error_call("No data detected")
}
#return just the dataframe if only one event is detected, otherwise return as a list
if (length(data_out) == 1) {
data_out <- data_out[[1]]
}
return(data_out)
}