I am trying to import data from a timetable into R. I have been able to successfully load the v7.3 .mat file using the raveio
package. The .mat file has two timetables, both have the same timescale. These tables are rather huge (6422100 rows in the sample I am using to write the code) so it hard to share a reproducible example.
In the list raveio::read_mat generates from the .mat file, I can see variables that contain the timetable properties:
[82] "#refs#/cc" "#refs#/d/CustomProps" "#refs#/d/VariableCustomProps"
[85] "#refs#/d/arrayProps/Description" "#refs#/d/arrayProps/TableCustomProperties" "#refs#/d/arrayProps/UserData"
[88] "#refs#/d/data" "#refs#/d/dimNames" "#refs#/d/dimNamesOrig"
[91] "#refs#/d/incompatibilityMsg" "#refs#/d/minCompatibleVersion" "#refs#/d/numDims"
[94] "#refs#/d/numRows" "#refs#/d/numVars" "#refs#/d/rowTimes"
[97] "#refs#/d/useDimNamesOrig" "#refs#/d/useVarNamesOrig" "#refs#/d/varContinuity"
[100] "#refs#/d/varDescriptions" "#refs#/d/varNames" "#refs#/d/varNamesOrig"
[103] "#refs#/d/varUnits" "#refs#/d/versionSavedFrom" "#refs#/db"
"#refs#/d/rowTimes"
only has a length of 6, so that is not the key. None of the variables that are the right length have obvious timestamps in them, or datenum value.
Any clues? I'm also trying to find better documentation as to how timetables are created to help. Cheers.