Skip to content

Improve documentation of important ggproto classes #6426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
820f00e
standalone docs for `?Geom`
teunbrand Apr 8, 2025
2bb54b7
redirect Geom class docs to `?Geom`
teunbrand Apr 8, 2025
72aae06
standalone docs for `?Stat`
teunbrand Apr 8, 2025
fbee8dd
Redirect Stat class docs to `?Stat`
teunbrand Apr 8, 2025
c6b6a39
standalone docs for `?Position`
teunbrand Apr 8, 2025
08b0f2a
Redirect Position class docs to `?Position`
teunbrand Apr 8, 2025
ca95dc4
polish
teunbrand Apr 8, 2025
9d48cc9
document the Layer class
teunbrand Apr 9, 2025
8fd98f6
Merge branch 'main' into fancy_ggproto_docs
teunbrand Apr 9, 2025
4e47e85
standalone docs for `?Guide`
teunbrand Apr 10, 2025
b25fdfe
Redirect `Guide` class docs to `?Guide`
teunbrand Apr 10, 2025
3f06a27
rename `Coord$transform(range)` to `Coord$transform(panel_params)`
teunbrand Apr 11, 2025
5edc694
standalone docs for `?Coord`
teunbrand Apr 11, 2025
b17cf00
Redirect `Coord` class docs to `?Coord`
teunbrand Apr 11, 2025
2a01b56
structure scale-.R with section titles
teunbrand Apr 14, 2025
4922995
move helpers to helper section
teunbrand Apr 14, 2025
3170e57
standalone docs for `?Scale`
teunbrand Apr 14, 2025
6db7d67
redirect `Scale` class docs to `?Scale`
teunbrand Apr 14, 2025
051be31
standalone docs for `?Facet`
teunbrand Apr 14, 2025
8d87ed6
redirect `Facet` docs to `?Facet`
teunbrand Apr 14, 2025
af19236
Various polishes
teunbrand Apr 14, 2025
ca730a3
standalone docs for `?Layout`
teunbrand Apr 15, 2025
e31f4d9
minor polishes
teunbrand Apr 15, 2025
cec65c2
crosslink docs
teunbrand Apr 15, 2025
a71583d
resolve merge conflict
teunbrand Apr 15, 2025
97b91a7
sprinkle some keywords internal around
teunbrand Apr 15, 2025
b468c9d
fix missing `%||%` on old R versions
teunbrand Apr 15, 2025
aec51c4
fix missing internal keyword
teunbrand Apr 15, 2025
3ccd875
stop this self-inflicted buffoonery
teunbrand Apr 15, 2025
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
2 changes: 1 addition & 1 deletion R/annotation-custom.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ annotation_custom <- function(grob, xmin = -Inf, xmax = Inf, ymin = -Inf, ymax =
)
}

#' @rdname ggplot2-ggproto
#' @rdname Geom
#' @format NULL
#' @usage NULL
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/annotation-logticks.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ annotation_logticks <- function(base = 10, sides = "bl", outside = FALSE, scaled
)
}

#' @rdname ggplot2-ggproto
#' @rdname Geom
#' @format NULL
#' @usage NULL
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/annotation-map.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ annotation_map <- function(map, ...) {
)
}

#' @rdname ggplot2-ggproto
#' @rdname Geom
#' @format NULL
#' @usage NULL
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/annotation-raster.R
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ annotation_raster <- function(raster, xmin, xmax, ymin, ymax,

}

#' @rdname ggplot2-ggproto
#' @rdname Geom
#' @format NULL
#' @usage NULL
#' @export
Expand Down
Loading