3 #' Transform a (potential) date index into an integer (relative to data)
5 #' @param index Date (or integer) index
6 #' @param data Object of class \code{Data}
9 dateIndexToInteger = function(index, data)
12 if (is.numeric(index))
13 index = as.integer(index)
14 if (is.integer(index))
16 if (inherits(index, "Date") || is.character(index))
18 tryCatch(indexAsDate <- as.Date(index), error=function(e) stop("Unrecognized index format"))
19 #TODO: tz arg to difftime ?
20 integerIndex <- round( as.numeric(
21 difftime(indexAsDate, as.Date(data$getTime(1)[1])) ) ) + 1
22 if (integerIndex >= 1 && integerIndex <= data$getSize())
24 stop("Date outside data range")
26 stop("Unrecognized index format")
31 #' Transform an integer index to date index (relative to data)
33 #' @param index Date (or integer) index
34 #' @param data Object of class \code{Data}
37 integerIndexToDate = function(index, data)
40 if (is.numeric(index))
41 index = as.integer(index)
42 if (!is.integer(index))
43 stop("'index' should be an integer")
44 as.Date( data$getTime(index)[1] )
47 #' getSimilarDaysIndices
49 #' Find similar days indices in the past
51 #' @param index Day index (numeric or date)
52 #' @param limit Maximum number of indices to return
53 #' @param same_seaon Should the indices correspond to day in same season?
56 getSimilarDaysIndices = function(index, limit, same_season)
58 index = dateIndexToInteger(index)
60 #TODO: mardi similaire à lundi mercredi jeudi aussi ...etc
63 #take all similar days in recent past
64 nb_days = min( (index-1) %/% 7, limit)
65 return ( rep(index,nb_days) - 7*seq_len(nb_days) )
68 #Look for similar days in similar season (+/- 30 days)
71 while (i >= 1 && length(days) < limit)
76 #look in the "future of the past"
80 #...and in the "past of the past"
86 # TODO: exact computation instead of -364
87 # 364 = closest multiple of 7 to 365 - drift along the years... but not so many years so OK
91 return ( days[1:min(limit,length(days))] )
96 #' Return a time-serie from its centered version + level
98 #' @param data A list as returned by \code{getData}
99 #' @param index The index to return
102 getSerie = function(data, index)
103 data[[index]]$centered_serie + data[[index]]$level