diff --git a/DESCRIPTION b/DESCRIPTION index e6a024e..236199a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -24,7 +24,7 @@ URL: https://davidgohel.github.io/ggiraph/ BugReports: https://github.com/davidgohel/ggiraph/issues Imports: cli, - ggplot2 (>= 3.5.0), + ggplot2 (>= 3.5.1), grid, htmltools, htmlwidgets (>= 1.5), diff --git a/NEWS.md b/NEWS.md index a317128..db03216 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,7 +3,7 @@ ## Issues - enable build in Alpine linux, thanks to Sebastian Meyer. -- geom_line_interactive now correctly assigns data_id and tooltip values +- `geom_line_interactive()` now correctly assigns data_id and tooltip values ## Changes diff --git a/R/annotate_interactive.R b/R/annotate_interactive.R index 047ba13..d53ce01 100644 --- a/R/annotate_interactive.R +++ b/R/annotate_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive annotations #' #' @description -#' The layer is based on [annotate()]. +#' The layer is based on [ggplot2::annotate()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function, diff --git a/R/annotation_raster_interactive.R b/R/annotation_raster_interactive.R index 49f1791..3ecffad 100644 --- a/R/annotation_raster_interactive.R +++ b/R/annotation_raster_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive raster annotations #' #' @description -#' The layer is based on [annotation_raster()]. +#' The layer is based on [ggplot2::annotation_raster()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function, diff --git a/R/element_interactive.R b/R/element_interactive.R index abed0cd..07940a6 100644 --- a/R/element_interactive.R +++ b/R/element_interactive.R @@ -4,8 +4,8 @@ #' With these functions the user can add interactivity to various [theme][ggplot2::theme] #' elements. #' -#' They are based on [element_rect()], -#' [element_line()] and [element_text()] +#' They are based on [ggplot2::element_rect()], +#' [ggplot2::element_line()] and [ggplot2::element_text()] #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, @@ -63,7 +63,7 @@ element_interactive <- function(element_func, #' @title Create an interactive label #' @description #' This function returns an object that can be used as a label -#' via the [labs()] family of functions or +#' via the [ggplot2::labs()] family of functions or #' when setting a `scale`/`guide` name/title or key label. #' It passes the interactive parameters to a theme element created via #' [element_text_interactive()] or via an interactive guide. diff --git a/R/facet_interactive.R b/R/facet_interactive.R index 059a182..53b85af 100644 --- a/R/facet_interactive.R +++ b/R/facet_interactive.R @@ -2,7 +2,7 @@ #' @title Create interactive wraped facets #' @description These facets are based on -#' [facet_wrap()]. +#' [ggplot2::facet_wrap()]. #' #' To make a facet interactive, it is mandatory to use #' [labeller_interactive()] for argument `labeller`. @@ -51,7 +51,7 @@ FacetInteractiveWrap <- ggproto("FacetInteractiveWrap", FacetWrap, #' @title Create interactive grid facets #' @description These facets are based on -#' [facet_grid()]. +#' [ggplot2::facet_grid()]. #' #' To make a facet interactive, it is mandatory to use #' [labeller_interactive()] for argument `labeller`. diff --git a/R/geom_abline_interactive.R b/R/geom_abline_interactive.R index 888a932..ed1a87e 100644 --- a/R/geom_abline_interactive.R +++ b/R/geom_abline_interactive.R @@ -1,8 +1,8 @@ #' @title Create interactive reference lines #' #' @description -#' These geometries are based on [geom_abline()], -#' [geom_hline()] and [geom_vline()]. +#' These geometries are based on [ggplot2::geom_abline()], +#' [ggplot2::geom_hline()] and [ggplot2::geom_vline()]. #' #' @param ... arguments passed to base function, #' plus any of the [interactive_parameters]. diff --git a/R/geom_bar_interactive.R b/R/geom_bar_interactive.R index ab5c91c..944b416 100644 --- a/R/geom_bar_interactive.R +++ b/R/geom_bar_interactive.R @@ -1,8 +1,8 @@ #' @title Create interactive bars #' #' @description -#' The geometries are based on [geom_bar()] -#' and [geom_col()]. +#' The geometries are based on [ggplot2::geom_bar()] +#' and [ggplot2::geom_col()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, @@ -27,8 +27,8 @@ GeomInteractiveBar <- ggproto( default_aes = add_default_interactive_aes(GeomBar), parameters = interactive_geom_parameters, draw_key = interactive_geom_draw_key, - draw_panel = function(self, data, panel_params, coord, - width = NULL, flipped_aes = FALSE, + draw_panel = function(self, data, panel_params, coord, + width = NULL, flipped_aes = FALSE, .ipar = IPAR_NAMES) { GeomInteractiveRect$draw_panel(data, panel_params, coord, .ipar = .ipar) } diff --git a/R/geom_bin_2d_interactive.R b/R/geom_bin_2d_interactive.R index 809abea..e8b908c 100644 --- a/R/geom_bin_2d_interactive.R +++ b/R/geom_bin_2d_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive heatmaps of 2d bin counts #' #' @description -#' The geometry is based on [geom_bin_2d()]. +#' The geometry is based on [ggplot2::geom_bin_2d()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_boxplot_interactive.R b/R/geom_boxplot_interactive.R index f2a4660..dc73a61 100644 --- a/R/geom_boxplot_interactive.R +++ b/R/geom_boxplot_interactive.R @@ -112,7 +112,7 @@ StatInteractiveBoxplot <- ggproto( #' @title Create interactive boxplot #' #' @description -#' The geometry is based on [geom_boxplot()]. +#' The geometry is based on [ggplot2::geom_boxplot()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_contour_interactive.R b/R/geom_contour_interactive.R index 72c32f4..6e7eb26 100644 --- a/R/geom_contour_interactive.R +++ b/R/geom_contour_interactive.R @@ -1,8 +1,8 @@ #' @title Create interactive 2d contours of a 3d surface #' #' @description -#' These geometries are based on [geom_contour()] -#' and [geom_contour_filled()]. +#' These geometries are based on [ggplot2::geom_contour()] +#' and [ggplot2::geom_contour_filled()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_count_interactive.R b/R/geom_count_interactive.R index 97ca23d..f73ab3f 100644 --- a/R/geom_count_interactive.R +++ b/R/geom_count_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive point counts #' #' @description -#' The geometry is based on [geom_bin2d()]. +#' The geometry is based on [ggplot2::geom_bin2d()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_crossbar_interactive.R b/R/geom_crossbar_interactive.R index 88ec951..c6794c9 100644 --- a/R/geom_crossbar_interactive.R +++ b/R/geom_crossbar_interactive.R @@ -1,8 +1,8 @@ #' Create interactive vertical intervals: lines, crossbars & errorbars #' #' @description -#' These geometries are based on [geom_crossbar()], [geom_errorbar()], -#' [geom_linerange()] and [geom_pointrange()]. +#' These geometries are based on [ggplot2::geom_crossbar()], [ggplot2::geom_errorbar()], +#' [ggplot2::geom_linerange()] and [ggplot2::geom_pointrange()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_density_2d_interactive.R b/R/geom_density_2d_interactive.R index 07d91f8..e4fd1e9 100644 --- a/R/geom_density_2d_interactive.R +++ b/R/geom_density_2d_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive contours of a 2d density estimate #' #' @description -#' The geometries are based on [geom_density_2d()] and [geom_density_2d_filled()]. +#' The geometries are based on [ggplot2::geom_density_2d()] and [ggplot2::geom_density_2d_filled()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_density_interactive.R b/R/geom_density_interactive.R index f5c762d..621295f 100644 --- a/R/geom_density_interactive.R +++ b/R/geom_density_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive smoothed density estimates #' #' @description -#' The geometry is based on [geom_density()]. +#' The geometry is based on [ggplot2::geom_density()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_dotplot_interactive.R b/R/geom_dotplot_interactive.R index e6742f7..163254f 100644 --- a/R/geom_dotplot_interactive.R +++ b/R/geom_dotplot_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive dot plots #' #' @description -#' This geometry is based on [geom_dotplot()]. +#' This geometry is based on [ggplot2::geom_dotplot()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_errorbarh_interactive.R b/R/geom_errorbarh_interactive.R index 655c67e..e79355e 100644 --- a/R/geom_errorbarh_interactive.R +++ b/R/geom_errorbarh_interactive.R @@ -1,7 +1,7 @@ #' Create interactive horizontal error bars #' #' @description -#' This geometry is based on [geom_errorbarh()]. +#' This geometry is based on [ggplot2::geom_errorbarh()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_hex_interactive.R b/R/geom_hex_interactive.R index 9ed0767..1c98f2e 100644 --- a/R/geom_hex_interactive.R +++ b/R/geom_hex_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive hexagonal heatmaps #' #' @description -#' The geometry is based on [geom_hex()]. +#' The geometry is based on [ggplot2::geom_hex()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_histogram_interactive.R b/R/geom_histogram_interactive.R index 6ece42a..b1424db 100644 --- a/R/geom_histogram_interactive.R +++ b/R/geom_histogram_interactive.R @@ -1,8 +1,8 @@ #' @title Create interactive histograms and frequency polygons #' #' @description -#' The geometries are based on [geom_histogram()] -#' and [geom_freqpoly()]. +#' The geometries are based on [ggplot2::geom_histogram()] +#' and [ggplot2::geom_freqpoly()]. #' See the documentation for those functions for more details. #' #' This interactive version is only providing a single tooltip per diff --git a/R/geom_jitter_interactive.R b/R/geom_jitter_interactive.R index 5abab6e..5b39a52 100644 --- a/R/geom_jitter_interactive.R +++ b/R/geom_jitter_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive jittered points #' #' @description -#' The geometry is based on [geom_jitter()]. +#' The geometry is based on [ggplot2::geom_jitter()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_map_interactive.R b/R/geom_map_interactive.R index d203234..385dd8b 100644 --- a/R/geom_map_interactive.R +++ b/R/geom_map_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive polygons from a reference map #' #' @description -#' The geometry is based on [geom_map()]. +#' The geometry is based on [ggplot2::geom_map()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_path_interactive.R b/R/geom_path_interactive.R index c90d61d..52cc6ad 100644 --- a/R/geom_path_interactive.R +++ b/R/geom_path_interactive.R @@ -1,8 +1,8 @@ #' @title Create interactive observations connections #' #' @description -#' These geometries are based on [geom_path()], -#' [geom_line()] and [geom_step()]. +#' These geometries are based on [ggplot2::geom_path()], +#' [ggplot2::geom_line()] and [ggplot2::geom_step()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_point_interactive.R b/R/geom_point_interactive.R index de074f5..49e8530 100644 --- a/R/geom_point_interactive.R +++ b/R/geom_point_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive points #' #' @description -#' The geometry is based on [geom_point()]. +#' The geometry is based on [ggplot2::geom_point()]. #' See the documentation for those functions for more details. #' #' @note diff --git a/R/geom_polygon_interactive.R b/R/geom_polygon_interactive.R index 89782a2..5c1516d 100644 --- a/R/geom_polygon_interactive.R +++ b/R/geom_polygon_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive polygons #' #' @description -#' The geometry is based on [geom_polygon()]. +#' The geometry is based on [ggplot2::geom_polygon()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_quantile_interactive.R b/R/geom_quantile_interactive.R index 9aa705d..a1adc7a 100644 --- a/R/geom_quantile_interactive.R +++ b/R/geom_quantile_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive quantile regression #' #' @description -#' The geometry is based on [geom_quantile()]. +#' The geometry is based on [ggplot2::geom_quantile()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_raster_interactive.R b/R/geom_raster_interactive.R index becd720..02d10c4 100644 --- a/R/geom_raster_interactive.R +++ b/R/geom_raster_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive raster rectangles #' #' @description -#' The geometry is based on [geom_raster()]. +#' The geometry is based on [ggplot2::geom_raster()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_rect_interactive.R b/R/geom_rect_interactive.R index e2fe049..8544aba 100644 --- a/R/geom_rect_interactive.R +++ b/R/geom_rect_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive rectangles #' #' @description -#' These geometries are based on [geom_rect()] and [geom_tile()]. +#' These geometries are based on [ggplot2::geom_rect()] and [ggplot2::geom_tile()]. #' See the documentation for those functions for more details. #' #' @note diff --git a/R/geom_ribbon_interactive.R b/R/geom_ribbon_interactive.R index 43ea58e..d7c2f11 100644 --- a/R/geom_ribbon_interactive.R +++ b/R/geom_ribbon_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive ribbons and area plots #' #' @description -#' The geometries are based on [geom_ribbon()] and [geom_area()]. +#' The geometries are based on [ggplot2::geom_ribbon()] and [ggplot2::geom_area()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_segment_interactive.R b/R/geom_segment_interactive.R index 61f8fc8..992f49c 100644 --- a/R/geom_segment_interactive.R +++ b/R/geom_segment_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive line segments and curves #' #' @description -#' The geometries are based on [geom_segment()] and [geom_curve()]. +#' The geometries are based on [ggplot2::geom_segment()] and [ggplot2::geom_curve()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_sf_interactive.R b/R/geom_sf_interactive.R index a48abef..c91aa42 100644 --- a/R/geom_sf_interactive.R +++ b/R/geom_sf_interactive.R @@ -1,8 +1,9 @@ #' @title Create interactive sf objects #' #' @description -#' These geometries are based on [geom_sf()], [geom_sf_label()] and [geom_sf_text()]. -#' See the documentation for those functions for more details. +#' These geometries are based on [ggplot2::geom_sf()], [ggplot2::geom_sf_label()] +#' and [ggplot2::geom_sf_text()]. See the documentation for those functions for +#' more details. #' #' @param ... arguments passed to base function, #' plus any of the [interactive_parameters]. @@ -33,7 +34,7 @@ GeomInteractiveSf <- ggproto( lineend = "butt", linejoin = "round", linemitre = 10, - na.rm = TRUE, + na.rm = TRUE, .ipar = IPAR_NAMES) { # call original draw_panel for each data row/geometry # this way multi geometries are handled too diff --git a/R/geom_smooth_interactive.R b/R/geom_smooth_interactive.R index 902013d..efdbf63 100644 --- a/R/geom_smooth_interactive.R +++ b/R/geom_smooth_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive smoothed conditional means #' #' @description -#' The geometry is based on [geom_smooth()]. +#' The geometry is based on [ggplot2::geom_smooth()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_spoke_interactive.R b/R/geom_spoke_interactive.R index 6fcab1c..c69fc77 100644 --- a/R/geom_spoke_interactive.R +++ b/R/geom_spoke_interactive.R @@ -2,7 +2,7 @@ #' parameterised by location, direction and distance #' #' @description -#' The geometry is based on [geom_spoke()]. +#' The geometry is based on [ggplot2::geom_spoke()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_text_interactive.R b/R/geom_text_interactive.R index 676ad2b..4748aa6 100644 --- a/R/geom_text_interactive.R +++ b/R/geom_text_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive textual annotations #' #' @description -#' The geometries are based on [geom_text()] and [geom_label()]. +#' The geometries are based on [ggplot2::geom_text()] and [ggplot2::geom_label()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/geom_violin_interactive.R b/R/geom_violin_interactive.R index c5660d4..bd248c9 100644 --- a/R/geom_violin_interactive.R +++ b/R/geom_violin_interactive.R @@ -1,7 +1,7 @@ #' @title Create interactive violin plot #' #' @description -#' The geometry is based on [geom_violin()]. +#' The geometry is based on [ggplot2::geom_violin()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/guide_bins_interactive.R b/R/guide_bins_interactive.R index acac632..0b09915 100644 --- a/R/guide_bins_interactive.R +++ b/R/guide_bins_interactive.R @@ -1,6 +1,6 @@ #' @title Create interactive bins guide #' @description -#' The guide is based on [guide_bins()]. +#' The guide is based on [ggplot2::guide_bins()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function. diff --git a/R/guide_colourbar_interactive.R b/R/guide_colourbar_interactive.R index 54dc184..fc9fdd4 100644 --- a/R/guide_colourbar_interactive.R +++ b/R/guide_colourbar_interactive.R @@ -1,6 +1,6 @@ #' @title Create interactive continuous colour bar guide #' @description -#' The guide is based on [guide_colourbar()]. +#' The guide is based on [ggplot2::guide_colourbar()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function. diff --git a/R/guide_coloursteps_interactive.R b/R/guide_coloursteps_interactive.R index 1e3cd40..267eaad 100644 --- a/R/guide_coloursteps_interactive.R +++ b/R/guide_coloursteps_interactive.R @@ -1,6 +1,6 @@ #' @title Create interactive colorsteps guide #' @description -#' The guide is based on [guide_coloursteps()]. +#' The guide is based on [ggplot2::guide_coloursteps()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function. diff --git a/R/guide_legend_interactive.R b/R/guide_legend_interactive.R index 5ab77de..bf2aed4 100644 --- a/R/guide_legend_interactive.R +++ b/R/guide_legend_interactive.R @@ -1,6 +1,6 @@ #' @title Create interactive legend guide #' @description -#' The guide is based on [guide_legend()]. +#' The guide is based on [ggplot2::guide_legend()]. #' See the documentation for that function for more details. #' #' @param ... arguments passed to base function. diff --git a/R/ipar.R b/R/ipar.R index 0b50bf4..ade2857 100644 --- a/R/ipar.R +++ b/R/ipar.R @@ -44,7 +44,7 @@ #' @section Details for interactive geom functions: #' The interactive parameters can be supplied with two ways: #' \itemize{ -#' \item As aesthetics with the mapping argument (via [aes()]). +#' \item As aesthetics with the mapping argument (via [ggplot2::aes()]). #' In this way they can be mapped to data columns and apply to a set of geometries. #' #' \item As plain arguments into the geom_*_interactive function. @@ -92,7 +92,7 @@ #' and they should be scalar values. #' #' For theme text elements ([element_text_interactive()]), the interactive parameters -#' can also be supplied while setting a label value, via the [labs()] family +#' can also be supplied while setting a label value, via the [ggplot2::labs()] family #' of functions or when setting a scale/guide title or key label. #' Instead of setting a character value for the element, function #' [label_interactive()] can be used to define interactive parameters diff --git a/R/labeller_interactive.R b/R/labeller_interactive.R index adb3f78..48b1a56 100644 --- a/R/labeller_interactive.R +++ b/R/labeller_interactive.R @@ -20,7 +20,7 @@ #' `theme(strip.text.y = element_text_interactive())` #' #' @param ... arguments passed to base function [labeller()] -#' @param .mapping set of aesthetic mappings created by [aes()] or [aes_()]. +#' @param .mapping set of aesthetic mappings created by [ggplot2::aes()] or [ggplot2::aes_()]. #' It should provide mappings for any of the [interactive_parameters]. #' In addition it understands a `label` parameter for creating a new label text. #' @examples diff --git a/R/scale_alpha_interactive.R b/R/scale_alpha_interactive.R index 76bd9a7..9033f40 100644 --- a/R/scale_alpha_interactive.R +++ b/R/scale_alpha_interactive.R @@ -1,12 +1,12 @@ #' @title Create interactive scales for alpha transparency #' @description These scales are based on -#' [scale_alpha()], -#' [scale_alpha_continuous()], -#' [scale_alpha_discrete()], -#' [scale_alpha_binned()], -#' [scale_alpha_ordinal()], -#' [scale_alpha_date()], -#' [scale_alpha_datetime()]. +#' [ggplot2::scale_alpha()], +#' [ggplot2::scale_alpha_continuous()], +#' [ggplot2::scale_alpha_discrete()], +#' [ggplot2::scale_alpha_binned()], +#' [ggplot2::scale_alpha_ordinal()], +#' [ggplot2::scale_alpha_date()], +#' [ggplot2::scale_alpha_datetime()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_brewer_interactive.R b/R/scale_brewer_interactive.R index e3a86c8..768ec8b 100644 --- a/R/scale_brewer_interactive.R +++ b/R/scale_brewer_interactive.R @@ -1,11 +1,11 @@ #' @title Create interactive colorbrewer scales #' @description These scales are based on -#' [scale_colour_brewer()], -#' [scale_fill_brewer()], -#' [scale_colour_distiller()], -#' [scale_fill_distiller()], -#' [scale_colour_fermenter()], -#' [scale_fill_fermenter()]. +#' [ggplot2::scale_colour_brewer()], +#' [ggplot2::scale_fill_brewer()], +#' [ggplot2::scale_colour_distiller()], +#' [ggplot2::scale_fill_distiller()], +#' [ggplot2::scale_colour_fermenter()], +#' [ggplot2::scale_fill_fermenter()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_colour_interactive.R b/R/scale_colour_interactive.R index 5e2fc2f..7009fb5 100644 --- a/R/scale_colour_interactive.R +++ b/R/scale_colour_interactive.R @@ -1,19 +1,19 @@ #' @title Create interactive colour scales #' @description These scales are based on -#' [scale_colour_continuous()], -#' [scale_fill_continuous()], -#' [scale_colour_grey()], -#' [scale_fill_grey()], -#' [scale_colour_hue()], -#' [scale_fill_hue()], -#' [scale_colour_binned()], -#' [scale_fill_binned()], -#' [scale_colour_discrete()], -#' [scale_fill_discrete()], -#' [scale_colour_date()], -#' [scale_fill_date()], -#' [scale_colour_datetime()] and -#' [scale_fill_datetime()]. +#' [ggplot2::scale_colour_continuous()], +#' [ggplot2::scale_fill_continuous()], +#' [ggplot2::scale_colour_grey()], +#' [ggplot2::scale_fill_grey()], +#' [ggplot2::scale_colour_hue()], +#' [ggplot2::scale_fill_hue()], +#' [ggplot2::scale_colour_binned()], +#' [ggplot2::scale_fill_binned()], +#' [ggplot2::scale_colour_discrete()], +#' [ggplot2::scale_fill_discrete()], +#' [ggplot2::scale_colour_date()], +#' [ggplot2::scale_fill_date()], +#' [ggplot2::scale_colour_datetime()] and +#' [ggplot2::scale_fill_datetime()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_gradient_interactive.R b/R/scale_gradient_interactive.R index 486a8cb..05f4119 100644 --- a/R/scale_gradient_interactive.R +++ b/R/scale_gradient_interactive.R @@ -1,11 +1,11 @@ #' @title Create interactive gradient colour scales #' @description These scales are based on -#' [scale_colour_gradient()], -#' [scale_fill_gradient()], -#' [scale_colour_gradient2()], -#' [scale_fill_gradient2()], -#' [scale_colour_gradientn()] and -#' [scale_fill_gradientn()]. +#' [ggplot2::scale_colour_gradient()], +#' [ggplot2::scale_fill_gradient()], +#' [ggplot2::scale_colour_gradient2()], +#' [ggplot2::scale_fill_gradient2()], +#' [ggplot2::scale_colour_gradientn()] and +#' [ggplot2::scale_fill_gradientn()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_linetype_interactive.R b/R/scale_linetype_interactive.R index 8cb86ad..700131b 100644 --- a/R/scale_linetype_interactive.R +++ b/R/scale_linetype_interactive.R @@ -1,9 +1,9 @@ #' @title Create interactive scales for line patterns #' @description These scales are based on -#' [scale_linetype()], -#' [scale_linetype_continuous()], -#' [scale_linetype_discrete()] and -#' [scale_linetype_binned()]. +#' [ggplot2::scale_linetype()], +#' [ggplot2::scale_linetype_continuous()], +#' [ggplot2::scale_linetype_discrete()] and +#' [ggplot2::scale_linetype_binned()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_manual_interactive.R b/R/scale_manual_interactive.R index b0225dc..f7331bb 100644 --- a/R/scale_manual_interactive.R +++ b/R/scale_manual_interactive.R @@ -1,12 +1,12 @@ #' @title Create your own interactive discrete scale #' @description These scales are based on -#' [scale_colour_manual()], -#' [scale_fill_manual()], -#' [scale_size_manual()], -#' [scale_shape_manual()], -#' [scale_linetype_manual()], -#' [scale_alpha_manual()] and -#' [scale_discrete_manual()]. +#' [ggplot2::scale_colour_manual()], +#' [ggplot2::scale_fill_manual()], +#' [ggplot2::scale_size_manual()], +#' [ggplot2::scale_shape_manual()], +#' [ggplot2::scale_linetype_manual()], +#' [ggplot2::scale_alpha_manual()] and +#' [ggplot2::scale_discrete_manual()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_shape_interactive.R b/R/scale_shape_interactive.R index 109feea..eb53297 100644 --- a/R/scale_shape_interactive.R +++ b/R/scale_shape_interactive.R @@ -1,10 +1,10 @@ #' @title Create interactive scales for shapes #' @description These scales are based on -#' [scale_shape()], -#' [scale_shape_continuous()], -#' [scale_shape_discrete()], -#' [scale_shape_binned()] and -#' [scale_shape_ordinal()]. +#' [ggplot2::scale_shape()], +#' [ggplot2::scale_shape_continuous()], +#' [ggplot2::scale_shape_discrete()], +#' [ggplot2::scale_shape_binned()] and +#' [ggplot2::scale_shape_ordinal()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_size_interactive.R b/R/scale_size_interactive.R index 05dcc75..001787b 100644 --- a/R/scale_size_interactive.R +++ b/R/scale_size_interactive.R @@ -1,15 +1,15 @@ #' @title Create interactive scales for area or radius #' @description These scales are based on -#' [scale_size()], -#' [scale_size_area()], -#' [scale_size_continuous()], -#' [scale_size_discrete()], -#' [scale_size_binned()], -#' [scale_size_binned_area()], -#' [scale_size_date()], -#' [scale_size_datetime()], -#' [scale_size_ordinal()] and -#' [scale_radius()]. +#' [ggplot2::scale_size()], +#' [ggplot2::scale_size_area()], +#' [ggplot2::scale_size_continuous()], +#' [ggplot2::scale_size_discrete()], +#' [ggplot2::scale_size_binned()], +#' [ggplot2::scale_size_binned_area()], +#' [ggplot2::scale_size_date()], +#' [ggplot2::scale_size_datetime()], +#' [ggplot2::scale_size_ordinal()] and +#' [ggplot2::scale_radius()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_steps_interactive.R b/R/scale_steps_interactive.R index 8bda229..42db84f 100644 --- a/R/scale_steps_interactive.R +++ b/R/scale_steps_interactive.R @@ -1,11 +1,11 @@ #' @title Create interactive binned gradient colour scales #' @description These scales are based on -#' [scale_colour_steps()], -#' [scale_fill_steps()], -#' [scale_colour_steps2()], -#' [scale_fill_steps2()], -#' [scale_colour_stepsn()] and -#' [scale_fill_stepsn()]. +#' [ggplot2::scale_colour_steps()], +#' [ggplot2::scale_fill_steps()], +#' [ggplot2::scale_colour_steps2()], +#' [ggplot2::scale_fill_steps2()], +#' [ggplot2::scale_colour_stepsn()] and +#' [ggplot2::scale_fill_stepsn()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/R/scale_viridis_interactive.R b/R/scale_viridis_interactive.R index 8be2c09..432560f 100644 --- a/R/scale_viridis_interactive.R +++ b/R/scale_viridis_interactive.R @@ -1,13 +1,13 @@ #' @title Create interactive viridis colour scales #' @description These scales are based on -#' [scale_colour_viridis_d()], -#' [scale_fill_viridis_d()], -#' [scale_colour_viridis_c()], -#' [scale_fill_viridis_c()], -#' [scale_colour_viridis_b()], -#' [scale_fill_viridis_b()], -#' [scale_colour_ordinal()], -#' [scale_fill_ordinal()]. +#' [ggplot2::scale_colour_viridis_d()], +#' [ggplot2::scale_fill_viridis_d()], +#' [ggplot2::scale_colour_viridis_c()], +#' [ggplot2::scale_fill_viridis_c()], +#' [ggplot2::scale_colour_viridis_b()], +#' [ggplot2::scale_fill_viridis_b()], +#' [ggplot2::scale_colour_ordinal()], +#' [ggplot2::scale_fill_ordinal()]. #' See the documentation for those functions for more details. #' #' @param ... arguments passed to base function, diff --git a/cran-comments.md b/cran-comments.md index 3328ac9..44dd7f7 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,6 +1,6 @@ ## Test environments -* local mac-os R 4.4 installation +* local mac-os R 4.4.2 installation * Ubuntu and windows with R release and devel * win-builder (older, release and devel) @@ -10,5 +10,10 @@ There were no ERROR, WARNING or NOTE. ## Reverse dependencies -There is no issue related to ggiraph that have been detected. +There is two issues related to ggiraph that have been detected with +'packcircles' and 'ceterisParibus'. The deprecation message +"Function `ggiraph()` is replaced by `girafe()` and will be removed soon." +is there since almost 2 years now. 'ceterisParibus' has been contacted +in March 2023 but did not answer. https://github.com/pbiecek/ceterisParibus/issues/24 + diff --git a/man/annotate_interactive.Rd b/man/annotate_interactive.Rd index cdab0a0..ccff790 100644 --- a/man/annotate_interactive.Rd +++ b/man/annotate_interactive.Rd @@ -11,7 +11,7 @@ annotate_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The layer is based on \code{\link[=annotate]{annotate()}}. +The layer is based on \code{\link[ggplot2:annotate]{ggplot2::annotate()}}. See the documentation for that function for more details. } \section{Details for annotate_*_interactive functions}{ diff --git a/man/annotation_raster_interactive.Rd b/man/annotation_raster_interactive.Rd index 7124204..c03bd45 100644 --- a/man/annotation_raster_interactive.Rd +++ b/man/annotation_raster_interactive.Rd @@ -11,7 +11,7 @@ annotation_raster_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The layer is based on \code{\link[=annotation_raster]{annotation_raster()}}. +The layer is based on \code{\link[ggplot2:annotation_raster]{ggplot2::annotation_raster()}}. See the documentation for that function for more details. } \section{Details for annotate_*_interactive functions}{ diff --git a/man/element_interactive.Rd b/man/element_interactive.Rd index 7c1c7dc..74c93b8 100644 --- a/man/element_interactive.Rd +++ b/man/element_interactive.Rd @@ -20,8 +20,8 @@ plus any of the \link{interactive_parameters}.} With these functions the user can add interactivity to various \link[ggplot2:theme]{theme} elements. -They are based on \code{\link[=element_rect]{element_rect()}}, -\code{\link[=element_line]{element_line()}} and \code{\link[=element_text]{element_text()}} +They are based on \code{\link[ggplot2:element]{ggplot2::element_rect()}}, +\code{\link[ggplot2:element]{ggplot2::element_line()}} and \code{\link[ggplot2:element]{ggplot2::element_text()}} See the documentation for those functions for more details. } \section{Details for element_*_interactive functions}{ @@ -30,7 +30,7 @@ The interactive parameters can be supplied as arguments in the relevant function and they should be scalar values. For theme text elements (\code{\link[=element_text_interactive]{element_text_interactive()}}), the interactive parameters -can also be supplied while setting a label value, via the \code{\link[=labs]{labs()}} family +can also be supplied while setting a label value, via the \code{\link[ggplot2:labs]{ggplot2::labs()}} family of functions or when setting a scale/guide title or key label. Instead of setting a character value for the element, function \code{\link[=label_interactive]{label_interactive()}} can be used to define interactive parameters diff --git a/man/facet_grid_interactive.Rd b/man/facet_grid_interactive.Rd index 97edc7a..2a4e8de 100644 --- a/man/facet_grid_interactive.Rd +++ b/man/facet_grid_interactive.Rd @@ -20,7 +20,7 @@ An interactive facetting object. } \description{ These facets are based on -\code{\link[=facet_grid]{facet_grid()}}. +\code{\link[ggplot2:facet_grid]{ggplot2::facet_grid()}}. To make a facet interactive, it is mandatory to use \code{\link[=labeller_interactive]{labeller_interactive()}} for argument \code{labeller}. diff --git a/man/facet_wrap_interactive.Rd b/man/facet_wrap_interactive.Rd index de43686..4e7a219 100644 --- a/man/facet_wrap_interactive.Rd +++ b/man/facet_wrap_interactive.Rd @@ -20,7 +20,7 @@ An interactive facetting object. } \description{ These facets are based on -\code{\link[=facet_wrap]{facet_wrap()}}. +\code{\link[ggplot2:facet_wrap]{ggplot2::facet_wrap()}}. To make a facet interactive, it is mandatory to use \code{\link[=labeller_interactive]{labeller_interactive()}} for argument \code{labeller}. diff --git a/man/geom_abline_interactive.Rd b/man/geom_abline_interactive.Rd index 03e3978..606e6c8 100644 --- a/man/geom_abline_interactive.Rd +++ b/man/geom_abline_interactive.Rd @@ -18,14 +18,14 @@ geom_vline_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_abline]{geom_abline()}}, -\code{\link[=geom_hline]{geom_hline()}} and \code{\link[=geom_vline]{geom_vline()}}. +These geometries are based on \code{\link[ggplot2:geom_abline]{ggplot2::geom_abline()}}, +\code{\link[ggplot2:geom_abline]{ggplot2::geom_hline()}} and \code{\link[ggplot2:geom_abline]{ggplot2::geom_vline()}}. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_bar_interactive.Rd b/man/geom_bar_interactive.Rd index 7d7a446..fd49820 100644 --- a/man/geom_bar_interactive.Rd +++ b/man/geom_bar_interactive.Rd @@ -15,15 +15,15 @@ geom_col_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_bar]{geom_bar()}} -and \code{\link[=geom_col]{geom_col()}}. +The geometries are based on \code{\link[ggplot2:geom_bar]{ggplot2::geom_bar()}} +and \code{\link[ggplot2:geom_bar]{ggplot2::geom_col()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_bin_2d_interactive.Rd b/man/geom_bin_2d_interactive.Rd index 839c994..6fd97b2 100644 --- a/man/geom_bin_2d_interactive.Rd +++ b/man/geom_bin_2d_interactive.Rd @@ -12,14 +12,14 @@ geom_bin_2d_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_bin_2d]{geom_bin_2d()}}. +The geometry is based on \code{\link[ggplot2:geom_bin_2d]{ggplot2::geom_bin_2d()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_boxplot_interactive.Rd b/man/geom_boxplot_interactive.Rd index 64d5ee6..3b17abd 100644 --- a/man/geom_boxplot_interactive.Rd +++ b/man/geom_boxplot_interactive.Rd @@ -11,7 +11,7 @@ geom_boxplot_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_boxplot]{geom_boxplot()}}. +The geometry is based on \code{\link[ggplot2:geom_boxplot]{ggplot2::geom_boxplot()}}. See the documentation for that function for more details. } \details{ @@ -26,7 +26,7 @@ will be incorrect, which will result in an incorrect plot. The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_contour_interactive.Rd b/man/geom_contour_interactive.Rd index b4a8a5c..f768a9c 100644 --- a/man/geom_contour_interactive.Rd +++ b/man/geom_contour_interactive.Rd @@ -14,15 +14,15 @@ geom_contour_filled_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_contour]{geom_contour()}} -and \code{\link[=geom_contour_filled]{geom_contour_filled()}}. +These geometries are based on \code{\link[ggplot2:geom_contour]{ggplot2::geom_contour()}} +and \code{\link[ggplot2:geom_contour]{ggplot2::geom_contour_filled()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_count_interactive.Rd b/man/geom_count_interactive.Rd index 5298a73..a8cb7b8 100644 --- a/man/geom_count_interactive.Rd +++ b/man/geom_count_interactive.Rd @@ -11,14 +11,14 @@ geom_count_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_bin2d]{geom_bin2d()}}. +The geometry is based on \code{\link[ggplot2:geom_bin_2d]{ggplot2::geom_bin2d()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_crossbar_interactive.Rd b/man/geom_crossbar_interactive.Rd index b756724..602db03 100644 --- a/man/geom_crossbar_interactive.Rd +++ b/man/geom_crossbar_interactive.Rd @@ -22,15 +22,15 @@ geom_pointrange_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_crossbar]{geom_crossbar()}}, \code{\link[=geom_errorbar]{geom_errorbar()}}, -\code{\link[=geom_linerange]{geom_linerange()}} and \code{\link[=geom_pointrange]{geom_pointrange()}}. +These geometries are based on \code{\link[ggplot2:geom_linerange]{ggplot2::geom_crossbar()}}, \code{\link[ggplot2:geom_linerange]{ggplot2::geom_errorbar()}}, +\code{\link[ggplot2:geom_linerange]{ggplot2::geom_linerange()}} and \code{\link[ggplot2:geom_linerange]{ggplot2::geom_pointrange()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_density_2d_interactive.Rd b/man/geom_density_2d_interactive.Rd index f1199b3..b31ca76 100644 --- a/man/geom_density_2d_interactive.Rd +++ b/man/geom_density_2d_interactive.Rd @@ -16,14 +16,14 @@ geom_density_2d_filled_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_density_2d]{geom_density_2d()}} and \code{\link[=geom_density_2d_filled]{geom_density_2d_filled()}}. +The geometries are based on \code{\link[ggplot2:geom_density_2d]{ggplot2::geom_density_2d()}} and \code{\link[ggplot2:geom_density_2d]{ggplot2::geom_density_2d_filled()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_density_interactive.Rd b/man/geom_density_interactive.Rd index 78d75d8..98f6c2f 100644 --- a/man/geom_density_interactive.Rd +++ b/man/geom_density_interactive.Rd @@ -11,14 +11,14 @@ geom_density_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_density]{geom_density()}}. +The geometry is based on \code{\link[ggplot2:geom_density]{ggplot2::geom_density()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_dotplot_interactive.Rd b/man/geom_dotplot_interactive.Rd index 11740d9..fe78bc8 100644 --- a/man/geom_dotplot_interactive.Rd +++ b/man/geom_dotplot_interactive.Rd @@ -11,14 +11,14 @@ geom_dotplot_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -This geometry is based on \code{\link[=geom_dotplot]{geom_dotplot()}}. +This geometry is based on \code{\link[ggplot2:geom_dotplot]{ggplot2::geom_dotplot()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_errorbarh_interactive.Rd b/man/geom_errorbarh_interactive.Rd index 8a5eafa..00d2cbe 100644 --- a/man/geom_errorbarh_interactive.Rd +++ b/man/geom_errorbarh_interactive.Rd @@ -11,14 +11,14 @@ geom_errorbarh_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -This geometry is based on \code{\link[=geom_errorbarh]{geom_errorbarh()}}. +This geometry is based on \code{\link[ggplot2:geom_errorbarh]{ggplot2::geom_errorbarh()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_hex_interactive.Rd b/man/geom_hex_interactive.Rd index 695c1c3..8c0b0f2 100644 --- a/man/geom_hex_interactive.Rd +++ b/man/geom_hex_interactive.Rd @@ -11,14 +11,14 @@ geom_hex_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_hex]{geom_hex()}}. +The geometry is based on \code{\link[ggplot2:geom_hex]{ggplot2::geom_hex()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_histogram_interactive.Rd b/man/geom_histogram_interactive.Rd index 123a008..ccf3d4a 100644 --- a/man/geom_histogram_interactive.Rd +++ b/man/geom_histogram_interactive.Rd @@ -15,8 +15,8 @@ geom_histogram_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_histogram]{geom_histogram()}} -and \code{\link[=geom_freqpoly]{geom_freqpoly()}}. +The geometries are based on \code{\link[ggplot2:geom_histogram]{ggplot2::geom_histogram()}} +and \code{\link[ggplot2:geom_histogram]{ggplot2::geom_freqpoly()}}. See the documentation for those functions for more details. This interactive version is only providing a single tooltip per @@ -27,7 +27,7 @@ to associate a single tooltip to a set of bins. The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_jitter_interactive.Rd b/man/geom_jitter_interactive.Rd index 80fccd8..7ed1e29 100644 --- a/man/geom_jitter_interactive.Rd +++ b/man/geom_jitter_interactive.Rd @@ -11,14 +11,14 @@ geom_jitter_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_jitter]{geom_jitter()}}. +The geometry is based on \code{\link[ggplot2:geom_jitter]{ggplot2::geom_jitter()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_map_interactive.Rd b/man/geom_map_interactive.Rd index 8681144..585cb1f 100644 --- a/man/geom_map_interactive.Rd +++ b/man/geom_map_interactive.Rd @@ -11,14 +11,14 @@ geom_map_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_map]{geom_map()}}. +The geometry is based on \code{\link[ggplot2:geom_map]{ggplot2::geom_map()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_path_interactive.Rd b/man/geom_path_interactive.Rd index 2b9826b..4df643d 100644 --- a/man/geom_path_interactive.Rd +++ b/man/geom_path_interactive.Rd @@ -17,15 +17,15 @@ geom_step_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_path]{geom_path()}}, -\code{\link[=geom_line]{geom_line()}} and \code{\link[=geom_step]{geom_step()}}. +These geometries are based on \code{\link[ggplot2:geom_path]{ggplot2::geom_path()}}, +\code{\link[ggplot2:geom_path]{ggplot2::geom_line()}} and \code{\link[ggplot2:geom_path]{ggplot2::geom_step()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_point_interactive.Rd b/man/geom_point_interactive.Rd index 012801a..7df7de0 100644 --- a/man/geom_point_interactive.Rd +++ b/man/geom_point_interactive.Rd @@ -11,7 +11,7 @@ geom_point_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_point]{geom_point()}}. +The geometry is based on \code{\link[ggplot2:geom_point]{ggplot2::geom_point()}}. See the documentation for those functions for more details. } \note{ @@ -21,7 +21,7 @@ The following shapes id 3, 4 and 7 to 14 are composite symbols and should not be The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_polygon_interactive.Rd b/man/geom_polygon_interactive.Rd index f92bf8a..456251c 100644 --- a/man/geom_polygon_interactive.Rd +++ b/man/geom_polygon_interactive.Rd @@ -11,14 +11,14 @@ geom_polygon_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_polygon]{geom_polygon()}}. +The geometry is based on \code{\link[ggplot2:geom_polygon]{ggplot2::geom_polygon()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_quantile_interactive.Rd b/man/geom_quantile_interactive.Rd index 51d5b83..2b5cd59 100644 --- a/man/geom_quantile_interactive.Rd +++ b/man/geom_quantile_interactive.Rd @@ -11,14 +11,14 @@ geom_quantile_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_quantile]{geom_quantile()}}. +The geometry is based on \code{\link[ggplot2:geom_quantile]{ggplot2::geom_quantile()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_raster_interactive.Rd b/man/geom_raster_interactive.Rd index 2951681..bb40b37 100644 --- a/man/geom_raster_interactive.Rd +++ b/man/geom_raster_interactive.Rd @@ -11,14 +11,14 @@ geom_raster_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_raster]{geom_raster()}}. +The geometry is based on \code{\link[ggplot2:geom_tile]{ggplot2::geom_raster()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_rect_interactive.Rd b/man/geom_rect_interactive.Rd index a75a06a..d91aecf 100644 --- a/man/geom_rect_interactive.Rd +++ b/man/geom_rect_interactive.Rd @@ -15,7 +15,7 @@ geom_tile_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_rect]{geom_rect()}} and \code{\link[=geom_tile]{geom_tile()}}. +These geometries are based on \code{\link[ggplot2:geom_tile]{ggplot2::geom_rect()}} and \code{\link[ggplot2:geom_tile]{ggplot2::geom_tile()}}. See the documentation for those functions for more details. } \note{ @@ -28,7 +28,7 @@ rectangles should be small. The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_ribbon_interactive.Rd b/man/geom_ribbon_interactive.Rd index 92f4fe2..1ff9d8a 100644 --- a/man/geom_ribbon_interactive.Rd +++ b/man/geom_ribbon_interactive.Rd @@ -14,14 +14,14 @@ geom_area_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_ribbon]{geom_ribbon()}} and \code{\link[=geom_area]{geom_area()}}. +The geometries are based on \code{\link[ggplot2:geom_ribbon]{ggplot2::geom_ribbon()}} and \code{\link[ggplot2:geom_ribbon]{ggplot2::geom_area()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_segment_interactive.Rd b/man/geom_segment_interactive.Rd index 4cfa4f8..8ab38c2 100644 --- a/man/geom_segment_interactive.Rd +++ b/man/geom_segment_interactive.Rd @@ -15,14 +15,14 @@ geom_segment_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_segment]{geom_segment()}} and \code{\link[=geom_curve]{geom_curve()}}. +The geometries are based on \code{\link[ggplot2:geom_segment]{ggplot2::geom_segment()}} and \code{\link[ggplot2:geom_segment]{ggplot2::geom_curve()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_sf_interactive.Rd b/man/geom_sf_interactive.Rd index 8306fbe..87fd449 100644 --- a/man/geom_sf_interactive.Rd +++ b/man/geom_sf_interactive.Rd @@ -17,14 +17,15 @@ geom_sf_text_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -These geometries are based on \code{\link[=geom_sf]{geom_sf()}}, \code{\link[=geom_sf_label]{geom_sf_label()}} and \code{\link[=geom_sf_text]{geom_sf_text()}}. -See the documentation for those functions for more details. +These geometries are based on \code{\link[ggplot2:ggsf]{ggplot2::geom_sf()}}, \code{\link[ggplot2:ggsf]{ggplot2::geom_sf_label()}} +and \code{\link[ggplot2:ggsf]{ggplot2::geom_sf_text()}}. See the documentation for those functions for +more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_smooth_interactive.Rd b/man/geom_smooth_interactive.Rd index 43e3382..4ec2108 100644 --- a/man/geom_smooth_interactive.Rd +++ b/man/geom_smooth_interactive.Rd @@ -11,14 +11,14 @@ geom_smooth_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_smooth]{geom_smooth()}}. +The geometry is based on \code{\link[ggplot2:geom_smooth]{ggplot2::geom_smooth()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_spoke_interactive.Rd b/man/geom_spoke_interactive.Rd index 37f103e..151c5ca 100644 --- a/man/geom_spoke_interactive.Rd +++ b/man/geom_spoke_interactive.Rd @@ -12,14 +12,14 @@ geom_spoke_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_spoke]{geom_spoke()}}. +The geometry is based on \code{\link[ggplot2:geom_spoke]{ggplot2::geom_spoke()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_text_interactive.Rd b/man/geom_text_interactive.Rd index 2655ff4..a60ad50 100644 --- a/man/geom_text_interactive.Rd +++ b/man/geom_text_interactive.Rd @@ -15,14 +15,14 @@ geom_text_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometries are based on \code{\link[=geom_text]{geom_text()}} and \code{\link[=geom_label]{geom_label()}}. +The geometries are based on \code{\link[ggplot2:geom_text]{ggplot2::geom_text()}} and \code{\link[ggplot2:geom_text]{ggplot2::geom_label()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_text_repel_interactive.Rd b/man/geom_text_repel_interactive.Rd index 359eeee..bbc22e9 100644 --- a/man/geom_text_repel_interactive.Rd +++ b/man/geom_text_repel_interactive.Rd @@ -24,7 +24,7 @@ The \code{ggrepel} package is required for these geometries The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/geom_violin_interactive.Rd b/man/geom_violin_interactive.Rd index b9058c1..2eedb36 100644 --- a/man/geom_violin_interactive.Rd +++ b/man/geom_violin_interactive.Rd @@ -11,14 +11,14 @@ geom_violin_interactive(...) plus any of the \link{interactive_parameters}.} } \description{ -The geometry is based on \code{\link[=geom_violin]{geom_violin()}}. +The geometry is based on \code{\link[ggplot2:geom_violin]{ggplot2::geom_violin()}}. See the documentation for those functions for more details. } \section{Details for interactive geom functions}{ The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. diff --git a/man/guide_bins_interactive.Rd b/man/guide_bins_interactive.Rd index becfddd..41d46e6 100644 --- a/man/guide_bins_interactive.Rd +++ b/man/guide_bins_interactive.Rd @@ -13,7 +13,7 @@ guide_bins_interactive(...) An interactive guide object. } \description{ -The guide is based on \code{\link[=guide_bins]{guide_bins()}}. +The guide is based on \code{\link[ggplot2:guide_bins]{ggplot2::guide_bins()}}. See the documentation for that function for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/guide_colourbar_interactive.Rd b/man/guide_colourbar_interactive.Rd index d8563b6..965f107 100644 --- a/man/guide_colourbar_interactive.Rd +++ b/man/guide_colourbar_interactive.Rd @@ -16,7 +16,7 @@ guide_colorbar_interactive(...) An interactive guide object. } \description{ -The guide is based on \code{\link[=guide_colourbar]{guide_colourbar()}}. +The guide is based on \code{\link[ggplot2:guide_colourbar]{ggplot2::guide_colourbar()}}. See the documentation for that function for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/guide_coloursteps_interactive.Rd b/man/guide_coloursteps_interactive.Rd index ec9bc54..ed7e58b 100644 --- a/man/guide_coloursteps_interactive.Rd +++ b/man/guide_coloursteps_interactive.Rd @@ -16,7 +16,7 @@ guide_colorsteps_interactive(...) An interactive guide object. } \description{ -The guide is based on \code{\link[=guide_coloursteps]{guide_coloursteps()}}. +The guide is based on \code{\link[ggplot2:guide_coloursteps]{ggplot2::guide_coloursteps()}}. See the documentation for that function for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/guide_legend_interactive.Rd b/man/guide_legend_interactive.Rd index 8ee9070..d67e60b 100644 --- a/man/guide_legend_interactive.Rd +++ b/man/guide_legend_interactive.Rd @@ -13,7 +13,7 @@ guide_legend_interactive(...) An interactive guide object. } \description{ -The guide is based on \code{\link[=guide_legend]{guide_legend()}}. +The guide is based on \code{\link[ggplot2:guide_legend]{ggplot2::guide_legend()}}. See the documentation for that function for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/interactive_parameters.Rd b/man/interactive_parameters.Rd index a4e4f2c..0adc0d6 100644 --- a/man/interactive_parameters.Rd +++ b/man/interactive_parameters.Rd @@ -49,7 +49,7 @@ a special set of parameters to these functions. The interactive parameters can be supplied with two ways: \itemize{ -\item As aesthetics with the mapping argument (via \code{\link[=aes]{aes()}}). +\item As aesthetics with the mapping argument (via \code{\link[ggplot2:aes]{ggplot2::aes()}}). In this way they can be mapped to data columns and apply to a set of geometries. \item As plain arguments into the geom_*_interactive function. @@ -103,7 +103,7 @@ The interactive parameters can be supplied as arguments in the relevant function and they should be scalar values. For theme text elements (\code{\link[=element_text_interactive]{element_text_interactive()}}), the interactive parameters -can also be supplied while setting a label value, via the \code{\link[=labs]{labs()}} family +can also be supplied while setting a label value, via the \code{\link[ggplot2:labs]{ggplot2::labs()}} family of functions or when setting a scale/guide title or key label. Instead of setting a character value for the element, function \code{\link[=label_interactive]{label_interactive()}} can be used to define interactive parameters diff --git a/man/label_interactive.Rd b/man/label_interactive.Rd index 3d497c1..85b900e 100644 --- a/man/label_interactive.Rd +++ b/man/label_interactive.Rd @@ -16,7 +16,7 @@ an interactive label object } \description{ This function returns an object that can be used as a label -via the \code{\link[=labs]{labs()}} family of functions or +via the \code{\link[ggplot2:labs]{ggplot2::labs()}} family of functions or when setting a \code{scale}/\code{guide} name/title or key label. It passes the interactive parameters to a theme element created via \code{\link[=element_text_interactive]{element_text_interactive()}} or via an interactive guide. diff --git a/man/labeller_interactive.Rd b/man/labeller_interactive.Rd index eb7728d..f5589fd 100644 --- a/man/labeller_interactive.Rd +++ b/man/labeller_interactive.Rd @@ -7,7 +7,7 @@ labeller_interactive(.mapping = NULL, ...) } \arguments{ -\item{.mapping}{set of aesthetic mappings created by \code{\link[=aes]{aes()}} or \code{\link[=aes_]{aes_()}}. +\item{.mapping}{set of aesthetic mappings created by \code{\link[ggplot2:aes]{ggplot2::aes()}} or \code{\link[ggplot2:aes_]{ggplot2::aes_()}}. It should provide mappings for any of the \link{interactive_parameters}. In addition it understands a \code{label} parameter for creating a new label text.} diff --git a/man/scale_alpha_interactive.Rd b/man/scale_alpha_interactive.Rd index 1e4693b..21aee7a 100644 --- a/man/scale_alpha_interactive.Rd +++ b/man/scale_alpha_interactive.Rd @@ -33,13 +33,13 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_alpha]{scale_alpha()}}, -\code{\link[=scale_alpha_continuous]{scale_alpha_continuous()}}, -\code{\link[=scale_alpha_discrete]{scale_alpha_discrete()}}, -\code{\link[=scale_alpha_binned]{scale_alpha_binned()}}, -\code{\link[=scale_alpha_ordinal]{scale_alpha_ordinal()}}, -\code{\link[=scale_alpha_date]{scale_alpha_date()}}, -\code{\link[=scale_alpha_datetime]{scale_alpha_datetime()}}. +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_continuous()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_discrete()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_binned()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_ordinal()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_date()}}, +\code{\link[ggplot2:scale_alpha]{ggplot2::scale_alpha_datetime()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_colour_brewer_interactive.Rd b/man/scale_colour_brewer_interactive.Rd index a0afad6..a395034 100644 --- a/man/scale_colour_brewer_interactive.Rd +++ b/man/scale_colour_brewer_interactive.Rd @@ -39,12 +39,12 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_brewer]{scale_colour_brewer()}}, -\code{\link[=scale_fill_brewer]{scale_fill_brewer()}}, -\code{\link[=scale_colour_distiller]{scale_colour_distiller()}}, -\code{\link[=scale_fill_distiller]{scale_fill_distiller()}}, -\code{\link[=scale_colour_fermenter]{scale_colour_fermenter()}}, -\code{\link[=scale_fill_fermenter]{scale_fill_fermenter()}}. +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_colour_brewer()}}, +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_fill_brewer()}}, +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_colour_distiller()}}, +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_fill_distiller()}}, +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_colour_fermenter()}}, +\code{\link[ggplot2:scale_brewer]{ggplot2::scale_fill_fermenter()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_colour_interactive.Rd b/man/scale_colour_interactive.Rd index d99fa54..88d2bd7 100644 --- a/man/scale_colour_interactive.Rd +++ b/man/scale_colour_interactive.Rd @@ -76,20 +76,20 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_continuous]{scale_colour_continuous()}}, -\code{\link[=scale_fill_continuous]{scale_fill_continuous()}}, -\code{\link[=scale_colour_grey]{scale_colour_grey()}}, -\code{\link[=scale_fill_grey]{scale_fill_grey()}}, -\code{\link[=scale_colour_hue]{scale_colour_hue()}}, -\code{\link[=scale_fill_hue]{scale_fill_hue()}}, -\code{\link[=scale_colour_binned]{scale_colour_binned()}}, -\code{\link[=scale_fill_binned]{scale_fill_binned()}}, -\code{\link[=scale_colour_discrete]{scale_colour_discrete()}}, -\code{\link[=scale_fill_discrete]{scale_fill_discrete()}}, -\code{\link[=scale_colour_date]{scale_colour_date()}}, -\code{\link[=scale_fill_date]{scale_fill_date()}}, -\code{\link[=scale_colour_datetime]{scale_colour_datetime()}} and -\code{\link[=scale_fill_datetime]{scale_fill_datetime()}}. +\code{\link[ggplot2:scale_colour_continuous]{ggplot2::scale_colour_continuous()}}, +\code{\link[ggplot2:scale_colour_continuous]{ggplot2::scale_fill_continuous()}}, +\code{\link[ggplot2:scale_grey]{ggplot2::scale_colour_grey()}}, +\code{\link[ggplot2:scale_grey]{ggplot2::scale_fill_grey()}}, +\code{\link[ggplot2:scale_hue]{ggplot2::scale_colour_hue()}}, +\code{\link[ggplot2:scale_hue]{ggplot2::scale_fill_hue()}}, +\code{\link[ggplot2:scale_colour_continuous]{ggplot2::scale_colour_binned()}}, +\code{\link[ggplot2:scale_colour_continuous]{ggplot2::scale_fill_binned()}}, +\code{\link[ggplot2:scale_colour_discrete]{ggplot2::scale_colour_discrete()}}, +\code{\link[ggplot2:scale_colour_discrete]{ggplot2::scale_fill_discrete()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_colour_date()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_date()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_colour_datetime()}} and +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_datetime()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_colour_steps_interactive.Rd b/man/scale_colour_steps_interactive.Rd index 203f209..a2220ab 100644 --- a/man/scale_colour_steps_interactive.Rd +++ b/man/scale_colour_steps_interactive.Rd @@ -39,12 +39,12 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_steps]{scale_colour_steps()}}, -\code{\link[=scale_fill_steps]{scale_fill_steps()}}, -\code{\link[=scale_colour_steps2]{scale_colour_steps2()}}, -\code{\link[=scale_fill_steps2]{scale_fill_steps2()}}, -\code{\link[=scale_colour_stepsn]{scale_colour_stepsn()}} and -\code{\link[=scale_fill_stepsn]{scale_fill_stepsn()}}. +\code{\link[ggplot2:scale_steps]{ggplot2::scale_colour_steps()}}, +\code{\link[ggplot2:scale_steps]{ggplot2::scale_fill_steps()}}, +\code{\link[ggplot2:scale_steps]{ggplot2::scale_colour_steps2()}}, +\code{\link[ggplot2:scale_steps]{ggplot2::scale_fill_steps2()}}, +\code{\link[ggplot2:scale_steps]{ggplot2::scale_colour_stepsn()}} and +\code{\link[ggplot2:scale_steps]{ggplot2::scale_fill_stepsn()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_gradient_interactive.Rd b/man/scale_gradient_interactive.Rd index d943b79..62c1ce7 100644 --- a/man/scale_gradient_interactive.Rd +++ b/man/scale_gradient_interactive.Rd @@ -40,12 +40,12 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_gradient]{scale_colour_gradient()}}, -\code{\link[=scale_fill_gradient]{scale_fill_gradient()}}, -\code{\link[=scale_colour_gradient2]{scale_colour_gradient2()}}, -\code{\link[=scale_fill_gradient2]{scale_fill_gradient2()}}, -\code{\link[=scale_colour_gradientn]{scale_colour_gradientn()}} and -\code{\link[=scale_fill_gradientn]{scale_fill_gradientn()}}. +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_colour_gradient()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_gradient()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_colour_gradient2()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_gradient2()}}, +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_colour_gradientn()}} and +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_gradientn()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_linetype_interactive.Rd b/man/scale_linetype_interactive.Rd index d8fe87a..c631edf 100644 --- a/man/scale_linetype_interactive.Rd +++ b/man/scale_linetype_interactive.Rd @@ -24,10 +24,10 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_linetype]{scale_linetype()}}, -\code{\link[=scale_linetype_continuous]{scale_linetype_continuous()}}, -\code{\link[=scale_linetype_discrete]{scale_linetype_discrete()}} and -\code{\link[=scale_linetype_binned]{scale_linetype_binned()}}. +\code{\link[ggplot2:scale_linetype]{ggplot2::scale_linetype()}}, +\code{\link[ggplot2:scale_linetype]{ggplot2::scale_linetype_continuous()}}, +\code{\link[ggplot2:scale_linetype]{ggplot2::scale_linetype_discrete()}} and +\code{\link[ggplot2:scale_linetype]{ggplot2::scale_linetype_binned()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_manual_interactive.Rd b/man/scale_manual_interactive.Rd index daaf555..1898550 100644 --- a/man/scale_manual_interactive.Rd +++ b/man/scale_manual_interactive.Rd @@ -37,13 +37,13 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_manual]{scale_colour_manual()}}, -\code{\link[=scale_fill_manual]{scale_fill_manual()}}, -\code{\link[=scale_size_manual]{scale_size_manual()}}, -\code{\link[=scale_shape_manual]{scale_shape_manual()}}, -\code{\link[=scale_linetype_manual]{scale_linetype_manual()}}, -\code{\link[=scale_alpha_manual]{scale_alpha_manual()}} and -\code{\link[=scale_discrete_manual]{scale_discrete_manual()}}. +\code{\link[ggplot2:scale_manual]{ggplot2::scale_colour_manual()}}, +\code{\link[ggplot2:scale_manual]{ggplot2::scale_fill_manual()}}, +\code{\link[ggplot2:scale_manual]{ggplot2::scale_size_manual()}}, +\code{\link[ggplot2:scale_manual]{ggplot2::scale_shape_manual()}}, +\code{\link[ggplot2:scale_manual]{ggplot2::scale_linetype_manual()}}, +\code{\link[ggplot2:scale_manual]{ggplot2::scale_alpha_manual()}} and +\code{\link[ggplot2:scale_manual]{ggplot2::scale_discrete_manual()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_shape_interactive.Rd b/man/scale_shape_interactive.Rd index 1e3ebe9..a5a271d 100644 --- a/man/scale_shape_interactive.Rd +++ b/man/scale_shape_interactive.Rd @@ -27,11 +27,11 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_shape]{scale_shape()}}, -\code{\link[=scale_shape_continuous]{scale_shape_continuous()}}, -\code{\link[=scale_shape_discrete]{scale_shape_discrete()}}, -\code{\link[=scale_shape_binned]{scale_shape_binned()}} and -\code{\link[=scale_shape_ordinal]{scale_shape_ordinal()}}. +\code{\link[ggplot2:scale_shape]{ggplot2::scale_shape()}}, +\code{\link[ggplot2:scale_shape]{ggplot2::scale_shape_continuous()}}, +\code{\link[ggplot2:scale_shape]{ggplot2::scale_shape_discrete()}}, +\code{\link[ggplot2:scale_shape]{ggplot2::scale_shape_binned()}} and +\code{\link[ggplot2:scale_shape]{ggplot2::scale_shape_ordinal()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_size_interactive.Rd b/man/scale_size_interactive.Rd index d29c362..be211ca 100644 --- a/man/scale_size_interactive.Rd +++ b/man/scale_size_interactive.Rd @@ -42,16 +42,16 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_size]{scale_size()}}, -\code{\link[=scale_size_area]{scale_size_area()}}, -\code{\link[=scale_size_continuous]{scale_size_continuous()}}, -\code{\link[=scale_size_discrete]{scale_size_discrete()}}, -\code{\link[=scale_size_binned]{scale_size_binned()}}, -\code{\link[=scale_size_binned_area]{scale_size_binned_area()}}, -\code{\link[=scale_size_date]{scale_size_date()}}, -\code{\link[=scale_size_datetime]{scale_size_datetime()}}, -\code{\link[=scale_size_ordinal]{scale_size_ordinal()}} and -\code{\link[=scale_radius]{scale_radius()}}. +\code{\link[ggplot2:scale_size]{ggplot2::scale_size()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_area()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_continuous()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_discrete()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_binned()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_binned_area()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_date()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_datetime()}}, +\code{\link[ggplot2:scale_size]{ggplot2::scale_size_ordinal()}} and +\code{\link[ggplot2:scale_size]{ggplot2::scale_radius()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{ diff --git a/man/scale_viridis_interactive.Rd b/man/scale_viridis_interactive.Rd index 47b0bac..0487498 100644 --- a/man/scale_viridis_interactive.Rd +++ b/man/scale_viridis_interactive.Rd @@ -49,14 +49,14 @@ An interactive scale object. } \description{ These scales are based on -\code{\link[=scale_colour_viridis_d]{scale_colour_viridis_d()}}, -\code{\link[=scale_fill_viridis_d]{scale_fill_viridis_d()}}, -\code{\link[=scale_colour_viridis_c]{scale_colour_viridis_c()}}, -\code{\link[=scale_fill_viridis_c]{scale_fill_viridis_c()}}, -\code{\link[=scale_colour_viridis_b]{scale_colour_viridis_b()}}, -\code{\link[=scale_fill_viridis_b]{scale_fill_viridis_b()}}, -\code{\link[=scale_colour_ordinal]{scale_colour_ordinal()}}, -\code{\link[=scale_fill_ordinal]{scale_fill_ordinal()}}. +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_colour_viridis_d()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_fill_viridis_d()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_colour_viridis_c()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_fill_viridis_c()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_colour_viridis_b()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_fill_viridis_b()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_colour_ordinal()}}, +\code{\link[ggplot2:scale_viridis]{ggplot2::scale_fill_ordinal()}}. See the documentation for those functions for more details. } \section{Details for interactive scale and interactive guide functions}{