From 9370d2d6532f40fc1ba7ccf1b46c38af8f12d86c Mon Sep 17 00:00:00 2001 From: Christian Zang Date: Fri, 13 Dec 2024 11:09:57 +0100 Subject: [PATCH] dont test traceplot takes a bit long --- DESCRIPTION | 2 +- R/traceplot.R | 2 ++ man/traceplot.Rd | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 9ed16c9..8f95f59 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: treeclim Type: Package Title: Numerical Calibration of Proxy-Climate Relationships -Version: 2.0.7 +Version: 2.0.7.1 Date: 2024-12-13 Authors@R: c(person("Christian", "Zang", role = c("aut", "cre", "cph", "trl"), email = "christian.zang@hswt.de"), person("Franco", "Biondi", role = diff --git a/R/traceplot.R b/R/traceplot.R index 2df9bac..e8980fc 100644 --- a/R/traceplot.R +++ b/R/traceplot.R @@ -13,8 +13,10 @@ ##' variables? ##' @return an object of class "gg". ##' @examples +##' \donttest{ ##' dc_resp <- dcc(muc_spruce, muc_clim, 4:9, dynamic = "evolving") ##' traceplot(dc_resp, c("prec.curr.may", "prec.curr.jun")) +##' } ##' @import ggplot2 ##' @export traceplot <- function(x, variables = NULL, facet = FALSE) { diff --git a/man/traceplot.Rd b/man/traceplot.Rd index ccb5c59..d884637 100644 --- a/man/traceplot.Rd +++ b/man/traceplot.Rd @@ -26,6 +26,8 @@ selected variables. The variables can be selected using their name, partial matching is allowed. } \examples{ +\donttest{ dc_resp <- dcc(muc_spruce, muc_clim, 4:9, dynamic = "evolving") traceplot(dc_resp, c("prec.curr.may", "prec.curr.jun")) } +}