This function creates a series of correction factors. These are calculated based on the time of the observation and the total amount of time that the instrument had been deployed

dr_correct(dataFrame, dateVar, timeVar, format)

Arguments

dataFrame

The working data frame

dateVar

Date variable name

timeVar

Time variable name

format

Either "MDY" or "YMD" for dateVar

Value

A series of correction factors

Examples

# NOT RUN {
dr_correct(df, Date, Time, "YMD")
dr_correct(df, X, Y, "MDY")
# }