Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Imports:
rlang,
S7 (>= 0.2.0),
scales (>= 1.3.0),
tibble,
tidyr (>= 1.3.0),
utils
Suggests:
Expand All @@ -54,6 +55,7 @@ Suggests:
broom.helpers (>= 1.3.0),
chemometrics,
crosstalk,
cubble,
emmeans,
geosphere (>= 1.5-1),
ggforce,
Expand All @@ -75,6 +77,8 @@ Suggests:
vdiffr
RdMacros:
lifecycle
Remotes:
huizezhang-sherry/cubble
Config/Needs/website: tidyverse/tidytemplate
Config/testthat/edition: 3
Config/usethis/last-upkeep: 2025-06-13
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ S3method("[[<-","GGally::ggmatrix")
S3method(as.character,ggmatrix_fn_with_params)
S3method(as.character,ggmatrix_plot_obj)
S3method(grid.draw,ggmatrix)
S3method(tbl_sum,glyphplot)
export("%>%")
export(StatCross)
export(StatGGallyCount)
Expand Down Expand Up @@ -204,6 +205,7 @@ importFrom(stats,spline)
importFrom(stats,symnum)
importFrom(stats,terms)
importFrom(stats,time)
importFrom(tibble,tbl_sum)
importFrom(tidyr,pivot_longer)
importFrom(utils,capture.output)
importFrom(utils,head)
Expand Down
2 changes: 1 addition & 1 deletion R/ggally_cross.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' Plot the number of observations by using square points
#' with proportional areas. Could be filled according to chi-squared
#' statistics computed by [stat_cross()]. Labels could also
#' statistics computed by [ggstats::stat_cross()]. Labels could also
#' be added (see examples).
#'
#' @param data data set using
Expand Down
2 changes: 1 addition & 1 deletion R/ggcoef.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#' Model coefficients with \pkg{broom} and \pkg{ggplot2}
#'
#' Plot the coefficients of a model with \pkg{broom} and \pkg{ggplot2}.
#' For an updated and improved version, see [ggcoef_model()].
#' For an updated and improved version, see [ggstats::ggcoef_model()].
#'
#' @param x a model object to be tidied with [broom::tidy()] or a data frame (see Details)
#' @param mapping default aesthetic mapping
Expand Down
Loading