Converts a trackdata tibble object of the form (==wide):
sl_rowIdx | ... | T1 | T2 | T3 | ... | TN |
1 | ... | T1_value | T2_value | T3_value | ... | TN_value |
to its long form equivalent:
sl_rowIdx | ... | track_name | track_value |
1 | ... | T1 | T1_value |
1 | ... | T2 | T2_value |
1 | ... | T3 | T3_value |
... | ... | ... | ... |
1 | ... | TN | TN_value |
convert_wideToLong(td, calcFreqs = FALSE)
long form trackdata tibble object
wide form trackdata tibble object
calculate an additional column containing frequency values from 0-nyquist frequency that match T1-TN (can be quite useful for spectral data)