From 6e73bf18a2e75a527c4b95cacc7ade12ca6c3748 Mon Sep 17 00:00:00 2001 From: Dylan Beaudette Date: Wed, 18 Aug 2021 13:11:59 -0700 Subject: [PATCH] examples --- R/colorChart.R | 3 ++- man/colorChart.Rd | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/R/colorChart.R b/R/colorChart.R index bf794b9ed..aecdbf211 100644 --- a/R/colorChart.R +++ b/R/colorChart.R @@ -69,7 +69,8 @@ #' # result is a list, use the first element #' colorChart(s[[1]], chip.cex = 4) #' -#' colorChart(s[[1]], chip.cex = 4, annotate = TRUE) +#' # increase the possible range of color chip sizes +#' colorChart(s[[1]], chip.cex = 4, chip.cex.min = 0.01, chip.cex.max = 2) #' #' } #' diff --git a/man/colorChart.Rd b/man/colorChart.Rd index 1294c9166..9f8472ff4 100644 --- a/man/colorChart.Rd +++ b/man/colorChart.Rd @@ -85,7 +85,8 @@ if(!requireNamespace('latticeExtra')) { # result is a list, use the first element colorChart(s[[1]], chip.cex = 4) - colorChart(s[[1]], chip.cex = 4, annotate = TRUE) + # increase the possible range of color chip sizes + colorChart(s[[1]], chip.cex = 4, chip.cex.min = 0.01, chip.cex.max = 2) }