X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2Fplot.R;h=fe2fb4e39a2840b9c67208571c0797892260bea1;hb=41196789122f4b6bafeb7a306a3b4033637586f4;hp=b720e9a16fe588f492cb6a77af54516115b94bda;hpb=469529710f56c790ae932b45d13fed2e34bcabf2;p=talweg.git diff --git a/pkg/R/plot.R b/pkg/R/plot.R index b720e9a..fe2fb4e 100644 --- a/pkg/R/plot.R +++ b/pkg/R/plot.R @@ -1,120 +1,35 @@ -#' @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 +#' @inheritParams computeError #' @param indices Range of indices (integers or dates) #' #' @export -plotCurves <- function(data, indices) +plotCurves <- function(data, indices=seq_len(data$getSize())) { - yrange = range( sapply( indices, function(i) { - serie = c(data$getCenteredSerie(i)) - if (!all(is.na(serie))) - range(serie, na.rm=TRUE) - c() - }) ) + series = data$getSeries(indices) + yrange = quantile(series, probs=c(0.025,0.975), na.rm=TRUE) par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5) for (i in seq_along(indices)) { - plot(data$getSerie(indices[i]), type="l", ylim=yrange, - xlab=ifelse(i==1,"Temps (en heures)",""), ylab=ifelse(i==1,"PM10","")) - if (ii < length(indices)) + plot(series[,i], type="l", ylim=yrange, + xlab=ifelse(i==1,"Time (hours)",""), ylab=ifelse(i==1,"PM10","")) + if (i < length(indices)) par(new=TRUE) } } -#' @title plot measured / predicted +#' Plot error #' -#' @description Plot measured curve (in black) and predicted curve (in red) +#' Draw error graphs, potentially from several runs of \code{computeForecast()}. #' -#' @param data Object return by \code{getData} -#' @param pred Object as returned by \code{getForecast} -#' @param index Index in forecasts -#' -#' @export -plotPredReal <- function(data, pred, index) -{ - horizon = length(pred$getSerie(1)) - par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5, lwd=3) - measure = data$getSerie(pred$getIndexInData(index)+1)[1:horizon] - yrange = range( pred$getSerie(index), measure ) - plot(measure, type="l", ylim=yrange, xlab="Temps (en heures)", ylab="PM10") - par(new=TRUE) - plot(pred$getSerie(index), type="l", col="#0000FF", ylim=yrange, xlab="", ylab="") -} - -#' @title Plot filaments -#' -#' @description Plot 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 -#' @param limit Number of neighbors to consider -#' -#' @export -plotFilaments <- function(data, index, limit=60) -{ - index = dateIndexToInteger(index, data) - ref_serie = data$getCenteredSerie(index) - if (any(is.na(ref_serie))) - stop("plotFilaments requires a serie without NAs") - L = length(ref_serie) - first_day = ifelse(length(data$getCenteredSerie(1)