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)
11 if (is.numeric(index))
12 index = as.integer(index)
13 if (is.integer(index))
14 return (index) #works on integers too: trust input
15 if (inherits(index, "Date") || is.character(index))
17 tryCatch(indexAsDate <- as.Date(index), error=function(e) stop("Unrecognized index format"))
18 #TODO: tz arg to difftime ?
19 integerIndex <- round( as.numeric(
20 difftime(indexAsDate, as.Date(data$getTime(1)[1])) ) ) + 1
21 if (integerIndex >= 1 && integerIndex <= data$getSize())
23 stop("Date outside data range")
25 stop("Unrecognized index format")
30 #' Transform an integer index to date index (relative to data)
32 #' @param index Date (or integer) index
33 #' @param data Object of class \code{Data}
36 integerIndexToDate = function(index, data)
39 return (index) #works on dates too: trust input
41 if (is.numeric(index))
42 index = as.integer(index)
43 if (!is.integer(index))
44 stop("'index' should be a date or integer")
45 as.Date( data$getTime(index)[1] )
48 #' getSimilarDaysIndices
50 #' Find similar days indices in the past
52 #' @param index Day index (numeric or date)
53 #' @param limit Maximum number of indices to return
54 #' @param same_seaon Should the indices correspond to day in same season?
57 getSimilarDaysIndices = function(index, limit, same_season)
59 index = dateIndexToInteger(index)
61 #TODO: mardi similaire à lundi mercredi jeudi aussi ...etc
64 #take all similar days in recent past
65 nb_days = min( (index-1) %/% 7, limit)
66 return ( rep(index,nb_days) - 7*seq_len(nb_days) )
69 #Look for similar days in similar season (+/- 30 days)
72 while (i >= 1 && length(days) < limit)
77 #look in the "future of the past"
81 #...and in the "past of the past"
87 # TODO: exact computation instead of -364
88 # 364 = closest multiple of 7 to 365 - drift along the years... but not so many years so OK
92 return ( days[1:min(limit,length(days))] )
97 #' Return a time-serie from its centered version + level
99 #' @param data A list as returned by \code{getData}
100 #' @param index The index to return
103 getSerie = function(data, index)
104 data[[index]]$centered_serie + data[[index]]$level