R/time_normalise_deprecated.R

Defines functions Time_normalise

Documented in Time_normalise

#' Time normalises continuous data
#'
#' Takes a dataframe containing continuous data and resamples it to the specified number of points
#' @param DF a dataframe containing the continuous data that needs to be time normalised to specified number of points. The first column in the data frame must be the time or sample number column in ascending order
#' @param nodes numeric value which indicates how many points you would like your data to be resampled to
#' @return A dataframe of nrow(nodes) which contains the resampled data
#' @export

Time_normalise  <- function()
{
    .Deprecated("time_normalise")
    ## use new function, or remainder of myOldFunc
}
Kneerav/biomechanics documentation built on March 30, 2025, 12:56 a.m.