Learn R Programming

emuR (version 2.3.0)

convert_wideToLong: convert tracks of a tibble trackdata object to the long form

Description

Converts a trackdata tibble object of the form (==wide):

sl_rowIdx ... T1 T2 T3 ... TN

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

Usage

convert_wideToLong(td, calcFreqs = F)

Arguments

td

wide form trackdata tibble object

calcFreqs

calculate an additional column containing frequency values from 0-nyquist frequency that match T1-TN (can be quite useful for spectral data)

Value

long form trackdata tibble object