data.frame of time-seriesR/periodFinder.R
periodFinder.RdEstimates the period, amp, and phase of a data.frame of time-series via fast Fourier transform (FFT).
A model fit for the time-series is generated using the first 3 harmonics. The period, amp, and phase are
computed based on the aggregate fit.
periodFinder(data)
| data | a |
|---|
a data.frame of numeric period, amplitude, and phase estimates for each gene.
getFFT for FFT calculation.
detrend for linear detrending of time-series prior to periodFinder processing.
movingAverageDF for smoothing of time-series prior to periodFinder processing.