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")) } +}