| read_flydra_mat | R Documentation |
read_flydra_mat() is designed to import data from a .mat file
that has been exported from Flydra software. The resultant object is a tibble
that additionally has important metadata stored as attributes (see Details).
read_flydra_mat(mat_file, file_id = NA, subject_name, frame_rate = 100, ...)
mat_file |
A file (or path to file) in .mat format, exported from Flydra |
file_id |
(Optional) identifier for this file. If not supplied, this
defaults to |
subject_name |
Name that will be assigned to the subject |
frame_rate |
The capture frame rate of the session |
... |
Additional arguments that may be passed from other pathviewr functions |
A tibble with numerical data in columns. The first two columns will
have frame numbers and time (assumed to be in secs), respectively. Columns
3 through 5 will contain position data. Note that unlike the behavior of
read_motive_csv() this function produces "tidy" data that have
already been gathered into key-value pairs based on subject.
Vikram B. Baliga
read_motive_csv for importing Motive data
Other data import functions:
as_viewr(),
import_and_clean_batch(),
import_batch(),
read_motive_csv()
library(pathviewr)
## Import the example Flydra data included in the package
flydra_data <-
read_flydra_mat(system.file("extdata", "pathviewr_flydra_example_data.mat",
package = 'pathviewr'),
subject_name = "birdie_wooster")
## Names of variables in the resulting tibble
names(flydra_data)
## A variety of metadata are stored as attributes. Of particular interest:
attr(flydra_data, "pathviewr_steps")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.