X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2Fplot.R;h=c8f7792cb05be2c4215bd93da8fac016b0b6e1ed;hb=af3b84f4cacade7d83221ca0249b546c50ddf340;hp=f4fc3bfac02a7f703c493aa29c16bab51c2dc6a1;hpb=1e20780ee1505fac6c7ed68d340892c497524561;p=talweg.git diff --git a/pkg/R/plot.R b/pkg/R/plot.R index f4fc3bf..c8f7792 100644 --- a/pkg/R/plot.R +++ b/pkg/R/plot.R @@ -1,6 +1,6 @@ -#' @title plot curves +#' plot curves #' -#' @description Plot a range of curves in data +#' Plot a range of curves in data #' #' @param data Object of class Data #' @param indices Range of indices (integers or dates) @@ -8,12 +8,12 @@ #' @export plotCurves <- function(data, indices=seq_len(data$getSize())) { - yrange = quantile( range( sapply( indices, function(i) { + yrange = quantile( sapply( indices, function(i) { serie = c(data$getCenteredSerie(i)) if (!all(is.na(serie))) range(serie, na.rm=TRUE) c() - }) ), probs=c(0.05,0.95) ) + }), probs=c(0.05,0.95) ) par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5) for (i in seq_along(indices)) { @@ -24,12 +24,12 @@ plotCurves <- function(data, indices=seq_len(data$getSize())) } } -#' @title plot measured / predicted +#' plot measured / predicted #' -#' @description Plot measured curve (in black) and predicted curve (in red) +#' Plot measured curve (in black) and predicted curve (in red) #' #' @param data Object return by \code{getData} -#' @param pred Object as returned by \code{getForecast} +#' @param pred Object as returned by \code{computeForecast} #' @param index Index in forecasts #' #' @export @@ -44,9 +44,9 @@ plotPredReal <- function(data, pred, index) plot(pred$getSerie(index), type="l", col="#0000FF", ylim=yrange, xlab="", ylab="") } -#' @title Compute filaments +#' Compute filaments #' -#' @description Get similar days in the past + "past tomorrow", as black as distances are small +#' Get similar days in the past + "past tomorrow", as black as distances are small #' #' @param data Object as returned by \code{getData} #' @param index Index in data @@ -61,55 +61,53 @@ computeFilaments <- function(data, index, limit=60, plot=TRUE) if (any(is.na(ref_serie))) stop("computeFilaments requires a serie without NAs") L = length(ref_serie) - first_day = ifelse(length(data$getCenteredSerie(1)