Skip to content

Commit b814d28

Browse files
committed
resolve merge conflict
Merge branch 'main' into fix_pseudo_log_ticks # Conflicts: # tests/testthat/test-guides.R
2 parents d303287 + 295f5cb commit b814d28

File tree

501 files changed

+18663
-39785
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

501 files changed

+18663
-39785
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
cache-version: 3
6464
extra-packages: >
6565
any::rcmdcheck,
66-
Hmisc=?ignore-before-r=4.1.0,
66+
Hmisc=?ignore-before-r=4.2.0,
6767
quantreg=?ignore-before-r=4.3.0
6868
needs: check
6969

DESCRIPTION

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: ggplot2
2-
Version: 3.5.1.9000
32
Title: Create Elegant Data Visualisations Using the Grammar of Graphics
3+
Version: 3.5.2.9000
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = "aut",
66
comment = c(ORCID = "0000-0003-4757-117X")),
@@ -30,21 +30,21 @@ License: MIT + file LICENSE
3030
URL: https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2
3131
BugReports: https://github.com/tidyverse/ggplot2/issues
3232
Depends:
33-
R (>= 3.5)
34-
Imports:
33+
R (>= 4.0)
34+
Imports:
3535
cli,
3636
grDevices,
3737
grid,
38-
gtable (>= 0.1.1),
38+
gtable (>= 0.3.6),
3939
isoband,
4040
lifecycle (> 1.0.1),
41-
MASS,
4241
rlang (>= 1.1.0),
43-
scales (>= 1.3.0),
42+
scales (>= 1.4.0),
4443
stats,
4544
vctrs (>= 0.6.0),
4645
withr (>= 2.5.0)
4746
Suggests:
47+
broom,
4848
covr,
4949
dplyr,
5050
ggplot2movies,
@@ -53,6 +53,7 @@ Suggests:
5353
knitr,
5454
mapproj,
5555
maps,
56+
MASS,
5657
mgcv,
5758
multcomp,
5859
munsell,
@@ -69,17 +70,18 @@ Suggests:
6970
tibble,
7071
vdiffr (>= 1.0.6),
7172
xml2
72-
Enhances:
73+
Enhances:
7374
sp
74-
VignetteBuilder:
75+
VignetteBuilder:
7576
knitr
7677
Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate
7778
Config/testthat/edition: 3
79+
Config/usethis/last-upkeep: 2024-10-24
7880
Encoding: UTF-8
7981
LazyData: true
8082
Roxygen: list(markdown = TRUE)
8183
RoxygenNote: 7.3.2
82-
Collate:
84+
Collate:
8385
'ggproto.R'
8486
'ggplot-global.R'
8587
'aaa-.R'
@@ -125,15 +127,15 @@ Collate:
125127
'facet-grid-.R'
126128
'facet-null.R'
127129
'facet-wrap.R'
128-
'fortify-lm.R'
129130
'fortify-map.R'
130-
'fortify-multcomp.R'
131+
'fortify-models.R'
131132
'fortify-spatial.R'
132133
'fortify.R'
133134
'stat-.R'
134135
'geom-abline.R'
135136
'geom-rect.R'
136137
'geom-bar.R'
138+
'geom-tile.R'
137139
'geom-bin2d.R'
138140
'geom-blank.R'
139141
'geom-boxplot.R'
@@ -150,7 +152,6 @@ Collate:
150152
'geom-density2d.R'
151153
'geom-dotplot.R'
152154
'geom-errorbar.R'
153-
'geom-errorbarh.R'
154155
'geom-freqpoly.R'
155156
'geom-function.R'
156157
'geom-hex.R'
@@ -167,7 +168,6 @@ Collate:
167168
'geom-smooth.R'
168169
'geom-spoke.R'
169170
'geom-text.R'
170-
'geom-tile.R'
171171
'geom-violin.R'
172172
'geom-vline.R'
173173
'ggplot2-package.R'
@@ -242,10 +242,12 @@ Collate:
242242
'scales-.R'
243243
'stat-align.R'
244244
'stat-bin.R'
245+
'stat-summary-2d.R'
245246
'stat-bin2d.R'
246247
'stat-bindot.R'
247248
'stat-binhex.R'
248249
'stat-boxplot.R'
250+
'stat-connect.R'
249251
'stat-contour.R'
250252
'stat-count.R'
251253
'stat-density-2d.R'
@@ -254,6 +256,7 @@ Collate:
254256
'stat-ellipse.R'
255257
'stat-function.R'
256258
'stat-identity.R'
259+
'stat-manual.R'
257260
'stat-qq-line.R'
258261
'stat-qq.R'
259262
'stat-quantilemethods.R'
@@ -262,7 +265,6 @@ Collate:
262265
'stat-smooth-methods.R'
263266
'stat-smooth.R'
264267
'stat-sum.R'
265-
'stat-summary-2d.R'
266268
'stat-summary-bin.R'
267269
'stat-summary-hex.R'
268270
'stat-summary.R'
@@ -273,6 +275,7 @@ Collate:
273275
'theme.R'
274276
'theme-defaults.R'
275277
'theme-current.R'
278+
'theme-sub.R'
276279
'utilities-break.R'
277280
'utilities-grid.R'
278281
'utilities-help.R'

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2020 ggplot2 authors
3+
Copyright (c) 2024 ggplot2 core developer team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NAMESPACE

Lines changed: 41 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ S3method("[[",ggproto)
1313
S3method("[[<-",uneval)
1414
S3method(.DollarNames,ggproto)
1515
S3method(as.data.frame,mapped_discrete)
16+
S3method(as.gtable,ggplot)
17+
S3method(as.gtable,ggplot_built)
1618
S3method(as.list,ggproto)
1719
S3method(autolayer,default)
1820
S3method(autoplot,default)
1921
S3method(c,mapped_discrete)
2022
S3method(drawDetails,zeroGrob)
2123
S3method(element_grob,element_blank)
2224
S3method(element_grob,element_line)
25+
S3method(element_grob,element_point)
26+
S3method(element_grob,element_polygon)
2327
S3method(element_grob,element_rect)
2428
S3method(element_grob,element_text)
2529
S3method(format,ggproto)
@@ -94,6 +98,7 @@ S3method(makeContext,dotstackGrob)
9498
S3method(merge_element,default)
9599
S3method(merge_element,element)
96100
S3method(merge_element,element_blank)
101+
S3method(merge_element,margin)
97102
S3method(pattern_alpha,GridPattern)
98103
S3method(pattern_alpha,GridTilingPattern)
99104
S3method(pattern_alpha,default)
@@ -172,6 +177,7 @@ export(GeomAbline)
172177
export(GeomAnnotationMap)
173178
export(GeomArea)
174179
export(GeomBar)
180+
export(GeomBin2d)
175181
export(GeomBlank)
176182
export(GeomBoxplot)
177183
export(GeomCol)
@@ -253,6 +259,7 @@ export(StatBin2d)
253259
export(StatBindot)
254260
export(StatBinhex)
255261
export(StatBoxplot)
262+
export(StatConnect)
256263
export(StatContour)
257264
export(StatContourFilled)
258265
export(StatCount)
@@ -263,6 +270,7 @@ export(StatEcdf)
263270
export(StatEllipse)
264271
export(StatFunction)
265272
export(StatIdentity)
273+
export(StatManual)
266274
export(StatQq)
267275
export(StatQqLine)
268276
export(StatQuantile)
@@ -343,6 +351,8 @@ export(element_blank)
343351
export(element_geom)
344352
export(element_grob)
345353
export(element_line)
354+
export(element_point)
355+
export(element_polygon)
346356
export(element_rect)
347357
export(element_render)
348358
export(element_text)
@@ -460,21 +470,26 @@ export(guide_transform)
460470
export(guides)
461471
export(has_flipped_aes)
462472
export(is.Coord)
463-
export(is.coord)
464-
export(is.element)
465473
export(is.facet)
466-
export(is.geom)
467474
export(is.ggplot)
468475
export(is.ggproto)
469-
export(is.guide)
470-
export(is.guides)
471-
export(is.layer)
472-
export(is.mapping)
473-
export(is.margin)
474-
export(is.position)
475-
export(is.scale)
476-
export(is.stat)
477476
export(is.theme)
477+
export(is.waiver)
478+
export(is_coord)
479+
export(is_facet)
480+
export(is_geom)
481+
export(is_ggplot)
482+
export(is_ggproto)
483+
export(is_guide)
484+
export(is_guides)
485+
export(is_layer)
486+
export(is_mapping)
487+
export(is_margin)
488+
export(is_position)
489+
export(is_scale)
490+
export(is_stat)
491+
export(is_theme)
492+
export(is_theme_element)
478493
export(label_both)
479494
export(label_bquote)
480495
export(label_context)
@@ -492,6 +507,8 @@ export(layer_sf)
492507
export(lims)
493508
export(map_data)
494509
export(margin)
510+
export(margin_auto)
511+
export(margin_part)
495512
export(max_height)
496513
export(max_width)
497514
export(mean_cl_boot)
@@ -674,6 +691,7 @@ export(stat_bin_2d)
674691
export(stat_bin_hex)
675692
export(stat_binhex)
676693
export(stat_boxplot)
694+
export(stat_connect)
677695
export(stat_contour)
678696
export(stat_contour_filled)
679697
export(stat_count)
@@ -686,6 +704,7 @@ export(stat_ecdf)
686704
export(stat_ellipse)
687705
export(stat_function)
688706
export(stat_identity)
707+
export(stat_manual)
689708
export(stat_qq)
690709
export(stat_qq_line)
691710
export(stat_quantile)
@@ -718,6 +737,17 @@ export(theme_linedraw)
718737
export(theme_minimal)
719738
export(theme_replace)
720739
export(theme_set)
740+
export(theme_sub_axis)
741+
export(theme_sub_axis_bottom)
742+
export(theme_sub_axis_left)
743+
export(theme_sub_axis_right)
744+
export(theme_sub_axis_top)
745+
export(theme_sub_axis_x)
746+
export(theme_sub_axis_y)
747+
export(theme_sub_legend)
748+
export(theme_sub_panel)
749+
export(theme_sub_plot)
750+
export(theme_sub_strip)
721751
export(theme_test)
722752
export(theme_update)
723753
export(theme_void)

0 commit comments

Comments
 (0)