├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── lock.yml ├── move.yml └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DESCRIPTION ├── GOVERNANCE.md ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── aes-delayed-eval.R ├── aes-variants.R ├── aes.R ├── all-classes.R ├── annotate.R ├── annotation-borders.R ├── annotation-custom.R ├── annotation-logticks.R ├── annotation-map.R ├── annotation-raster.R ├── autolayer.R ├── autoplot.R ├── axis-secondary.R ├── backports.R ├── bench.R ├── bin.R ├── compat-plyr.R ├── coord-.R ├── coord-cartesian-.R ├── coord-fixed.R ├── coord-flip.R ├── coord-map.R ├── coord-munch.R ├── coord-polar.R ├── coord-quickmap.R ├── coord-radial.R ├── coord-sf.R ├── coord-transform.R ├── data.R ├── docs-aes.R ├── docs-layer.R ├── facet-.R ├── facet-grid-.R ├── facet-labeller.R ├── facet-null.R ├── facet-wrap.R ├── fortify-map.R ├── fortify-models.R ├── fortify-spatial.R ├── fortify.R ├── geom-.R ├── geom-abline-hline-vline.R ├── geom-bar.R ├── geom-bin2d.R ├── geom-blank.R ├── geom-boxplot.R ├── geom-contour.R ├── geom-count.R ├── geom-crossbar.R ├── geom-curve.R ├── geom-density.R ├── geom-density2d.R ├── geom-dotplot.R ├── geom-errorbar.R ├── geom-freqpoly.R ├── geom-function.R ├── geom-hex.R ├── geom-histogram.R ├── geom-jitter.R ├── geom-label.R ├── geom-linerange.R ├── geom-map.R ├── geom-path.R ├── geom-point.R ├── geom-pointrange.R ├── geom-polygon.R ├── geom-quantile.R ├── geom-raster.R ├── geom-rect.R ├── geom-ribbon.R ├── geom-rug.R ├── geom-segment.R ├── geom-sf.R ├── geom-smooth.R ├── geom-spoke.R ├── geom-text.R ├── geom-tile.R ├── geom-update-defaults.R ├── geom-violin.R ├── ggplot-global.R ├── ggplot2-package.R ├── ggproto.R ├── grob-absolute.R ├── grob-dotstack.R ├── grouping.R ├── guide-.R ├── guide-axis-logticks.R ├── guide-axis-stack.R ├── guide-axis-theta.R ├── guide-axis.R ├── guide-bins.R ├── guide-colorbar.R ├── guide-colorsteps.R ├── guide-custom.R ├── guide-legend.R ├── guide-none.R ├── guide-old.R ├── guides-.R ├── guides-grid.R ├── hexbin.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── labels.R ├── layer-sf.R ├── layer.R ├── layout.R ├── legend-draw.R ├── limits.R ├── make-constructor.R ├── margins.R ├── plot-build.R ├── plot-construction.R ├── plot-last.R ├── plot-render.R ├── plot.R ├── position-.R ├── position-collide.R ├── position-dodge.R ├── position-dodge2.R ├── position-identity.R ├── position-jitter.R ├── position-jitterdodge.R ├── position-nudge.R ├── position-stack.R ├── properties.R ├── quick-plot.R ├── reshape-add-margins.R ├── save.R ├── scale-.R ├── scale-alpha.R ├── scale-binned.R ├── scale-brewer.R ├── scale-colour.R ├── scale-continuous.R ├── scale-date.R ├── scale-discrete-.R ├── scale-expansion.R ├── scale-gradient.R ├── scale-grey.R ├── scale-hue.R ├── scale-identity.R ├── scale-linetype.R ├── scale-linewidth.R ├── scale-manual.R ├── scale-shape.R ├── scale-size.R ├── scale-steps.R ├── scale-type.R ├── scale-view.R ├── scale-viridis.R ├── scales-.R ├── stat-.R ├── stat-align.R ├── stat-bin.R ├── stat-bin2d.R ├── stat-bindot.R ├── stat-binhex.R ├── stat-boxplot.R ├── stat-connect.R ├── stat-contour.R ├── stat-count.R ├── stat-density-2d.R ├── stat-density.R ├── stat-ecdf.R ├── stat-ellipse.R ├── stat-function.R ├── stat-identity.R ├── stat-manual.R ├── stat-qq-line.R ├── stat-qq.R ├── stat-quantilemethods.R ├── stat-sf-coordinates.R ├── stat-sf.R ├── stat-smooth-methods.R ├── stat-smooth.R ├── stat-sum.R ├── stat-summary-2d.R ├── stat-summary-bin.R ├── stat-summary-hex.R ├── stat-summary.R ├── stat-unique.R ├── stat-ydensity.R ├── summarise-plot.R ├── summary.R ├── theme-current.R ├── theme-defaults.R ├── theme-elements.R ├── theme-sub.R ├── theme.R ├── utilities-break.R ├── utilities-checks.R ├── utilities-grid.R ├── utilities-help.R ├── utilities-lifecycle.R ├── utilities-patterns.R ├── utilities-performance.R ├── utilities-resolution.R ├── utilities-tidy-eval.R ├── utilities.R ├── zxx.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── diamonds.R ├── diamonds.csv ├── economics.R ├── economics.csv ├── economics_raw │ ├── PCE.csv │ ├── POP.csv │ ├── PSAVERT.csv │ ├── UEMPMED.csv │ └── UNEMPLOY.csv ├── faithfuld.R ├── luv_colours.R ├── midwest.R ├── midwest.csv ├── mpg.R ├── mpg.csv ├── msleep.R ├── msleep.csv ├── presidential.R ├── presidential.csv ├── seals.R ├── seals.csv ├── tx-housing.R └── tx-housing.csv ├── data ├── diamonds.rda ├── economics.rda ├── economics_long.rda ├── faithfuld.rda ├── luv_colours.rda ├── midwest.rda ├── mpg.rda ├── msleep.rda ├── presidential.rda ├── seals.rda └── txhousing.rda ├── ggplot2.Rproj ├── icons ├── coord_cartesian.png ├── coord_fixed.png ├── coord_flip.png ├── coord_map.png ├── coord_polar.png ├── coord_transform.png ├── facet_grid.png ├── facet_wrap.png ├── geom_abline.png ├── geom_area.png ├── geom_bar.png ├── geom_bin2d.png ├── geom_blank.png ├── geom_boxplot.png ├── geom_contour.png ├── geom_count.png ├── geom_crossbar.png ├── geom_density.png ├── geom_dotplot.png ├── geom_freqpoly.png ├── geom_hex.png ├── geom_histogram.png ├── geom_jitter.png ├── geom_line.png ├── geom_map.png ├── geom_path.png ├── geom_point.png ├── geom_pointrange.png ├── geom_polygon.png ├── geom_quantile.png ├── geom_raster.png ├── geom_rect.png ├── geom_ribbon.png ├── geom_rug.png ├── geom_segment.png ├── geom_sf.png ├── geom_smooth.png ├── geom_spoke.png ├── geom_step.png ├── geom_text.png ├── geom_tile.png ├── geom_violin.png ├── icons.R ├── position_dodge.png ├── position_fill.png ├── position_identity.png ├── position_jitter.png ├── position_stack.png ├── scale_alpha.png ├── scale_colour_brewer.png ├── scale_colour_continuous.png ├── scale_colour_gradient.png ├── scale_colour_grey.png ├── scale_colour_hue.png ├── scale_colour_manual.png ├── scale_colour_viridis.png ├── scale_colour_viridis_d.png ├── scale_linetype.png ├── scale_shape.png ├── scale_size.png └── scale_x_date.png ├── inst ├── .gitignore └── CITATION ├── man ├── AxisSecondary.Rd ├── Coord.Rd ├── Facet.Rd ├── Geom.Rd ├── Guide.Rd ├── Layer-class.Rd ├── Layout.Rd ├── Position.Rd ├── Scale.Rd ├── Stat.Rd ├── absoluteGrob.Rd ├── add_theme.Rd ├── aes.Rd ├── aes_.Rd ├── aes_all.Rd ├── aes_auto.Rd ├── aes_colour_fill_alpha.Rd ├── aes_eval.Rd ├── aes_group_order.Rd ├── aes_linetype_size_shape.Rd ├── aes_position.Rd ├── annotate.Rd ├── annotation_borders.Rd ├── annotation_custom.Rd ├── annotation_logticks.Rd ├── annotation_map.Rd ├── annotation_raster.Rd ├── as.list.ggproto.Rd ├── as_labeller.Rd ├── autolayer.Rd ├── automatic_plotting.Rd ├── autoplot.Rd ├── benchplot.Rd ├── bidirection.Rd ├── binned_scale.Rd ├── calc_element.Rd ├── check_device.Rd ├── class_definitions.Rd ├── class_ggplot.Rd ├── class_ggplot_built.Rd ├── class_labels.Rd ├── class_mapping.Rd ├── class_theme.Rd ├── combine_vars.Rd ├── complete_theme.Rd ├── continuous_scale.Rd ├── coord_cartesian.Rd ├── coord_fixed.Rd ├── coord_flip.Rd ├── coord_map.Rd ├── coord_munch.Rd ├── coord_radial.Rd ├── coord_transform.Rd ├── cut_interval.Rd ├── datetime_scale.Rd ├── diamonds.Rd ├── discrete_scale.Rd ├── draw_key.Rd ├── economics.Rd ├── element.Rd ├── element_grob.Rd ├── element_render.Rd ├── expand_limits.Rd ├── expansion.Rd ├── facet_grid.Rd ├── facet_null.Rd ├── facet_wrap.Rd ├── faithfuld.Rd ├── figures │ ├── README-example-1.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ ├── linetype_table.pdf │ ├── linetype_table.svg │ ├── logo.png │ ├── shape_table.pdf │ └── shape_table.svg ├── fill_alpha.Rd ├── find_panel.Rd ├── fortify-multcomp.Rd ├── fortify.Rd ├── fortify.lm.Rd ├── fortify.map.Rd ├── fortify.sp.Rd ├── geom_abline.Rd ├── geom_bar.Rd ├── geom_bin_2d.Rd ├── geom_blank.Rd ├── geom_boxplot.Rd ├── geom_contour.Rd ├── geom_count.Rd ├── geom_density.Rd ├── geom_density_2d.Rd ├── geom_dotplot.Rd ├── geom_function.Rd ├── geom_hex.Rd ├── geom_histogram.Rd ├── geom_jitter.Rd ├── geom_linerange.Rd ├── geom_map.Rd ├── geom_path.Rd ├── geom_point.Rd ├── geom_polygon.Rd ├── geom_qq.Rd ├── geom_quantile.Rd ├── geom_ribbon.Rd ├── geom_rug.Rd ├── geom_segment.Rd ├── geom_smooth.Rd ├── geom_spoke.Rd ├── geom_text.Rd ├── geom_tile.Rd ├── geom_violin.Rd ├── get_alt_text.Rd ├── get_geom_defaults.Rd ├── get_guide_data.Rd ├── get_last_plot.Rd ├── get_strip_labels.Rd ├── get_theme.Rd ├── gg-add.Rd ├── gg_dep.Rd ├── gg_par.Rd ├── ggplot.Rd ├── ggplot2-package.Rd ├── ggplotGrob.Rd ├── ggplot_build.Rd ├── ggplot_gtable.Rd ├── ggproto.Rd ├── ggsave.Rd ├── ggsf.Rd ├── ggtheme.Rd ├── graphical-units.Rd ├── guide_axis.Rd ├── guide_axis_logticks.Rd ├── guide_axis_stack.Rd ├── guide_axis_theta.Rd ├── guide_bins.Rd ├── guide_colourbar.Rd ├── guide_coloursteps.Rd ├── guide_custom.Rd ├── guide_legend.Rd ├── guide_none.Rd ├── guides.Rd ├── hmisc.Rd ├── ignoring_data.Rd ├── is_rel.Rd ├── is_tests.Rd ├── label_bquote.Rd ├── labeller.Rd ├── labellers.Rd ├── labs.Rd ├── layer.Rd ├── layer_geoms.Rd ├── layer_positions.Rd ├── layer_sf.Rd ├── layer_stats.Rd ├── limits.Rd ├── lims.Rd ├── luv_colours.Rd ├── make_constructor.Rd ├── map_data.Rd ├── max_height.Rd ├── mean_se.Rd ├── merge_element.Rd ├── midwest.Rd ├── mpg.Rd ├── msleep.Rd ├── new_guide.Rd ├── old_guide.Rd ├── pattern_alpha.Rd ├── position_dodge.Rd ├── position_identity.Rd ├── position_jitter.Rd ├── position_jitterdodge.Rd ├── position_nudge.Rd ├── position_stack.Rd ├── presidential.Rd ├── print.ggplot.Rd ├── print.ggproto.Rd ├── qplot.Rd ├── reexports.Rd ├── register_theme_elements.Rd ├── remove_missing.Rd ├── render_axes.Rd ├── render_strips.Rd ├── resolution.Rd ├── scale_alpha.Rd ├── scale_binned.Rd ├── scale_brewer.Rd ├── scale_colour_continuous.Rd ├── scale_colour_discrete.Rd ├── scale_continuous.Rd ├── scale_date.Rd ├── scale_discrete.Rd ├── scale_gradient.Rd ├── scale_grey.Rd ├── scale_hue.Rd ├── scale_identity.Rd ├── scale_linetype.Rd ├── scale_linewidth.Rd ├── scale_manual.Rd ├── scale_shape.Rd ├── scale_size.Rd ├── scale_steps.Rd ├── scale_type.Rd ├── scale_viridis.Rd ├── seals.Rd ├── sec_axis.Rd ├── set_ggplot2_edition.Rd ├── set_last_plot.Rd ├── sf_transform_xy.Rd ├── shared_layer_parameters.Rd ├── should_stop.Rd ├── standardise_aes_names.Rd ├── stat_connect.Rd ├── stat_ecdf.Rd ├── stat_ellipse.Rd ├── stat_identity.Rd ├── stat_manual.Rd ├── stat_sf_coordinates.Rd ├── stat_summary.Rd ├── stat_summary_2d.Rd ├── stat_unique.Rd ├── subtheme.Rd ├── summarise_plot.Rd ├── theme.Rd ├── tidyeval.Rd ├── transform_position.Rd ├── translate_shape_string.Rd ├── txhousing.Rd ├── update_defaults.Rd ├── update_ggplot.Rd ├── update_labels.Rd ├── vars.Rd ├── waiver.Rd ├── wrap_dims.Rd └── zeroGrob.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── Rplot001.png │ ├── _snaps │ ├── aes-delayed-eval.md │ ├── aes.md │ ├── aes │ │ ├── alpha-set-in-alpha.svg │ │ ├── alpha-set-in-colour.svg │ │ ├── stat-count-width-0-5.svg │ │ ├── stat-count.svg │ │ ├── stat-identity-width-0-5.svg │ │ └── stat-identity.svg │ ├── annotate.md │ ├── annotate │ │ └── line-matches-points.svg │ ├── annotation-borders │ │ └── annotation-borders-utah.svg │ ├── annotation-custom.md │ ├── annotation-map.md │ ├── annotation-raster.md │ ├── autolayer.md │ ├── autoplot.md │ ├── axis-secondary.md │ ├── axis-secondary │ │ ├── sec-axis-custom-transform.svg │ │ ├── sec-axis-datetime-scale.svg │ │ ├── sec-axis-independent-transformations.svg │ │ ├── sec-axis-monotonicity-test.svg │ │ ├── sec-axis-sec-power-transform.svg │ │ ├── sec-axis-skewed-transform.svg │ │ └── sec-axis-with-division.svg │ ├── bin.md │ ├── coord-.md │ ├── coord-cartesian.md │ ├── coord-cartesian │ │ ├── clip-on-by-default-only-inside-visible.svg │ │ ├── clip-turned-off-both-inside-and-outside-visible.svg │ │ ├── contract-range.svg │ │ ├── expand-range.svg │ │ └── reversed-cartesian-coords.svg │ ├── coord-flip.md │ ├── coord-flip │ │ └── turning-off-secondary-title-with-coord-flip.svg │ ├── coord-map.md │ ├── coord-map │ │ ├── coord-map-switched-scale-position.svg │ │ └── usa-mercator.svg │ ├── coord-polar.md │ ├── coord-polar │ │ ├── bottom-half-circle-with-rotated-text.svg │ │ ├── full-circle-with-axes-placed-at-90-and-225-degrees.svg │ │ ├── inner-radius-with-all-axes.svg │ │ ├── partial-with-all-axes.svg │ │ ├── racetrack-plot-closed-and-has-center-hole.svg │ │ ├── racetrack-plot-closed-and-no-center-hole.svg │ │ ├── rays-circular-arcs-and-spiral-arcs.svg │ │ ├── reversed-polar-coords.svg │ │ ├── rose-plot-with-has-equal-spacing.svg │ │ ├── secondary-axis-ticks-and-labels.svg │ │ └── three-concentric-circles.svg │ ├── coord-sf.md │ ├── coord-sf │ │ ├── coord-sf-with-custom-guides.svg │ │ ├── limits-specified-in-long-lat.svg │ │ ├── limits-specified-in-projected-coords.svg │ │ ├── no-breaks.svg │ │ ├── no-panel-grid.svg │ │ ├── non-sf-geoms-using-long-lat.svg │ │ ├── non-sf-geoms-using-projected-coords.svg │ │ ├── reversed-sf-coords.svg │ │ └── sf-polygons.svg │ ├── coord-transform.md │ ├── coord-transform │ │ ├── basic-coord-transform-plot.svg │ │ ├── reversed-transformed-coords.svg │ │ └── sec-axis-with-coord-transform.svg │ ├── facet-.md │ ├── facet- │ │ ├── facet-grid-with-omitted-inner-axis-labels.svg │ │ ├── facet-wrap-with-omitted-inner-axis-labels.svg │ │ ├── left-justified-facet-labels-with-margins.svg │ │ └── left-justified-rotated-facet-labels-with-margins.svg │ ├── facet-grid-.md │ ├── facet-grid- │ │ └── switched-facet-strips.svg │ ├── facet-labeller.md │ ├── facet-labeller │ │ ├── outside-justified-labels.svg │ │ └── parsed-facet-labels.svg │ ├── facet-wrap.md │ ├── facet-wrap │ │ └── axes-are-positioned-correctly-in-non-table-layout.svg │ ├── fortify.md │ ├── function-args.md │ ├── geom-.md │ ├── geom-abline-hline-vline.md │ ├── geom-abline-hline-vline │ │ ├── cartesian-lines-intersect-mid-bars.svg │ │ ├── flipped-lines-intersect-mid-bars.svg │ │ ├── lines-curved-in-azequalarea.svg │ │ ├── polar-lines-intersect-mid-bars.svg │ │ └── straight-lines-in-mercator.svg │ ├── geom-bar.md │ ├── geom-boxplot.md │ ├── geom-boxplot │ │ ├── customised-style.svg │ │ ├── outlier-colours.svg │ │ └── staples.svg │ ├── geom-curve │ │ ├── flipped-geom-curve.svg │ │ ├── multishape-geom-curve.svg │ │ └── standard-geom-curve.svg │ ├── geom-dotplot.md │ ├── geom-dotplot │ │ ├── 2-na-values-bin-along-y-stack-center.svg │ │ ├── 2-na-values-dot-density-binning-binwidth-4.svg │ │ ├── 3-stackgroups-bin-y-histodot.svg │ │ ├── 3-stackgroups-dot-density-with-aligned-bins.svg │ │ ├── 3-stackgroups-histodot.svg │ │ ├── basic-dotplot-with-dot-density-binning-binwidth-4.svg │ │ ├── bin-along-y-stack-center.svg │ │ ├── bin-along-y-stack-centerwhole-histodot.svg │ │ ├── bin-along-y-stack-centerwhole.svg │ │ ├── bin-x-three-y-groups-stack-centerwhole.svg │ │ ├── bin-y-continous-x-axis-grouping-by-x.svg │ │ ├── bin-y-continous-x-axis-single-x-group.svg │ │ ├── bin-y-dodged-coord-flip.svg │ │ ├── bin-y-dodged.svg │ │ ├── bin-y-dodging-3-stackgroups-histodot.svg │ │ ├── bin-y-three-x-groups-bins-aligned-across-groups.svg │ │ ├── bin-y-three-x-groups-bins-aligned-coord-flip.svg │ │ ├── bin-y-three-x-groups-fill-and-dodge.svg │ │ ├── bin-y-three-x-groups-stack-centerwhole.svg │ │ ├── dots-stacked-closer-stackratio-5-fill-white.svg │ │ ├── facets-3-groups-histodot-stackgroups.svg │ │ ├── histodot-binning-equal-bin-spacing.svg │ │ ├── larger-dots-dotsize-1-5-fill-white.svg │ │ ├── multiple-groups-bins-aligned.svg │ │ ├── multiple-groups-bins-not-aligned.svg │ │ ├── stack-center-with-coord-flip.svg │ │ ├── stack-center.svg │ │ ├── stack-centerwhole-with-coord-flip.svg │ │ ├── stack-centerwhole.svg │ │ ├── stack-down-with-coord-flip.svg │ │ ├── stack-down.svg │ │ ├── stack-up-with-coord-flip.svg │ │ ├── stack-up.svg │ │ ├── stackratio-1-5.svg │ │ └── variable-linetype-and-size-specified-as-aesthetics.svg │ ├── geom-hex │ │ ├── hex-bin-plot-in-polar-coordinates.svg │ │ ├── hex-bin-plot-with-sqrt-transformed-y.svg │ │ ├── hexes-with-different-sizes.svg │ │ └── single-hex-bin-with-width-and-height-of-0-1.svg │ ├── geom-jitter.md │ ├── geom-label.md │ ├── geom-label │ │ └── geom-label-with-line-parameters.svg │ ├── geom-linerange.md │ ├── geom-map.md │ ├── geom-path.md │ ├── geom-path │ │ ├── lines-changed-order-should-have-same-appearance.svg │ │ ├── lines-colour-changed-order-should-have-same-appearance.svg │ │ ├── lines-colour.svg │ │ ├── lines.svg │ │ └── na-linetype.svg │ ├── geom-point.md │ ├── geom-polygon │ │ ├── basic-polygon-plot.svg │ │ └── open-and-closed-munched-polygons.svg │ ├── geom-raster.md │ ├── geom-raster │ │ ├── 1-x-3-just-0-0.svg │ │ ├── 1-x-3-set-limits.svg │ │ ├── 1-x-3.svg │ │ ├── 3-x-1-just-0-0.svg │ │ ├── 3-x-1-set-limits.svg │ │ ├── 3-x-1.svg │ │ ├── 3-x-2-just-0-0.svg │ │ ├── 3-x-2-set-limits.svg │ │ ├── 3-x-2.svg │ │ ├── discrete-positions.svg │ │ ├── irregular-categorical.svg │ │ └── rectangle-fallback.svg │ ├── geom-rect.md │ ├── geom-ribbon.md │ ├── geom-rug.md │ ├── geom-sf.md │ ├── geom-sf │ │ ├── geom-sf-line-legend.svg │ │ ├── geom-sf-point-legend.svg │ │ ├── geom-sf-polygon-legend.svg │ │ ├── labels-for-north-carolina.svg │ │ ├── mixed-geometry-types.svg │ │ ├── north-carolina-county-boundaries-with-arrow.svg │ │ ├── north-carolina-county-boundaries-with-more-than-one-arrow.svg │ │ ├── north-carolina-county-boundaries.svg │ │ ├── spatial-points.svg │ │ └── texts-for-north-carolina.svg │ ├── geom-smooth.md │ ├── geom-smooth │ │ ├── ribbon-turned-off-in-geom-smooth.svg │ │ └── ribbon-turned-on-in-geom-smooth.svg │ ├── geom-spoke.md │ ├── geom-text.md │ ├── geom-text │ │ └── geom-text-with-expressions.svg │ ├── geom-violin.md │ ├── geom-violin │ │ ├── basic.svg │ │ ├── continuous-x-axis-many-groups-center-should-be-at-2-0.svg │ │ ├── continuous-x-axis-single-group-center-should-be-at-1-0.svg │ │ ├── coord-flip.svg │ │ ├── coord-polar.svg │ │ ├── dodge2.svg │ │ ├── dodging-and-coord-flip.svg │ │ ├── dodging.svg │ │ ├── grouping-on-x-and-fill-dodge-width-0-5.svg │ │ ├── grouping-on-x-and-fill.svg │ │ ├── narrower-width-5.svg │ │ ├── scale-area-to-sample-size-c-is-smaller.svg │ │ ├── styled-quantiles.svg │ │ ├── with-smaller-bandwidth-and-points.svg │ │ └── with-tails-and-points.svg │ ├── ggproto.md │ ├── guide-.md │ ├── guide-axis.md │ ├── guide-axis │ │ ├── align-facet-labels-facets-horizontal.svg │ │ ├── align-facet-labels-facets-vertical.svg │ │ ├── axis-guides-basic.svg │ │ ├── axis-guides-check-overlap.svg │ │ ├── axis-guides-negative-rotation.svg │ │ ├── axis-guides-positive-rotation.svg │ │ ├── axis-guides-text-dodged-into-rows-cols.svg │ │ ├── axis-guides-vertical-negative-rotation.svg │ │ ├── axis-guides-vertical-rotation.svg │ │ ├── axis-guides-with-capped-ends.svg │ │ ├── axis-guides-zero-breaks.svg │ │ ├── axis-guides-zero-rotation.svg │ │ ├── guide-axis-customization.svg │ │ ├── guide-axis-theta-in-cartesian-coordinates.svg │ │ ├── guide-axis-theta-with-angle-adapting-to-theta.svg │ │ ├── guide-titles-with-coord-transform.svg │ │ ├── guides-specified-in-guides.svg │ │ ├── guides-with-minor-ticks.svg │ │ ├── logtick-axes-with-customisation.svg │ │ ├── position-guide-titles.svg │ │ ├── stacked-axes.svg │ │ ├── stacked-radial-axes.svg │ │ └── thick-axis-lines.svg │ ├── guide-bins.md │ ├── guide-bins │ │ ├── coinciding-limits-and-bins-2.svg │ │ ├── coinciding-limits-and-bins-3.svg │ │ ├── coinciding-limits-and-bins.svg │ │ ├── guide-bins-looks-as-it-should.svg │ │ ├── labels-when-limits-is-in-breaks.svg │ │ ├── remove-axis.svg │ │ ├── reversed-guide-bins.svg │ │ ├── show-arrows.svg │ │ ├── show-limits.svg │ │ └── work-horizontally.svg │ ├── guide-colorbar.md │ ├── guide-colorbar │ │ ├── combined-colour-and-fill-aesthetics.svg │ │ ├── customized-colorbar.svg │ │ └── white-to-red-colorbar-white-ticks-no-frame.svg │ ├── guide-colorsteps.md │ ├── guide-colorsteps │ │ ├── bins-relative-to-binsize.svg │ │ ├── coinciding-limits-and-bins-2.svg │ │ ├── coinciding-limits-and-bins-3.svg │ │ ├── coinciding-limits-and-bins.svg │ │ ├── guide-coloursteps-looks-as-it-should.svg │ │ ├── labels-when-limits-is-in-breaks.svg │ │ ├── show-limits.svg │ │ └── show-ticks-and-transparancy.svg │ ├── guide-custom │ │ ├── guide-custom-with-void-theme.svg │ │ └── stylised-guide-custom.svg │ ├── guide-legend.md │ ├── guide-legend │ │ ├── enlarged-guides.svg │ │ ├── horizontal-legend-direction.svg │ │ ├── left-aligned-legend-key.svg │ │ ├── legend-byrow-true.svg │ │ ├── legend-key-justification.svg │ │ ├── legend-with-widely-spaced-keys.svg │ │ └── vertical-legend-direction.svg │ ├── guides.md │ ├── guides │ │ ├── facet-grid-legend-on-bottom.svg │ │ ├── facet-grid-legend-on-left.svg │ │ ├── facet-grid-legend-on-right.svg │ │ ├── facet-grid-legend-on-top.svg │ │ ├── facet-wrap-legend-on-bottom.svg │ │ ├── facet-wrap-legend-on-left.svg │ │ ├── facet-wrap-legend-on-right.svg │ │ ├── facet-wrap-legend-on-top.svg │ │ ├── guide-title-and-text-positioning-and-alignment-via-themes.svg │ │ ├── horizontal-gap-of-1cm-between-guide-and-guide-text.svg │ │ ├── legend-inside-plot-bottom-left-of-legend-at-center.svg │ │ ├── legend-inside-plot-bottom-left.svg │ │ ├── legend-inside-plot-centered.svg │ │ ├── legend-inside-plot-multiple-positions.svg │ │ ├── legend-inside-plot-top-right.svg │ │ ├── legend-on-bottom.svg │ │ ├── legend-on-left.svg │ │ ├── legend-on-right.svg │ │ ├── legend-on-top.svg │ │ ├── legends-with-all-title-justifications.svg │ │ ├── multi-line-guide-title-works.svg │ │ ├── padding-in-legend-box.svg │ │ ├── rotated-guide-titles-and-labels.svg │ │ └── vertical-gap-of-1cm-between-guide-title-and-guide.svg │ ├── labels.md │ ├── labels │ │ ├── defaults.svg │ │ ├── tag-in-margin.svg │ │ ├── tag-in-panel-as-character.svg │ │ ├── tag-in-panel-as-numeric.svg │ │ ├── tag-in-plot-as-character.svg │ │ └── tag-in-plot-as-numeric.svg │ ├── layer.md │ ├── legend-draw │ │ ├── all-legend-keys.svg │ │ ├── appropriate-colour-key-with-alpha-key-as-lines.svg │ │ ├── circle-glyphs-of-2cm-size.svg │ │ ├── horizontal-boxplot-and-crossbar.svg │ │ ├── horizontal-linerange-and-pointrange.svg │ │ ├── rectangle-and-dotplot-key-glyphs.svg │ │ └── time-series-and-polygon-key-glyphs.svg │ ├── limits.md │ ├── make-constructor.md │ ├── margins.md │ ├── plot.md │ ├── position-collide.md │ ├── position-dodge.md │ ├── position-stack │ │ └── area-stacking.svg │ ├── prohibited-functions.md │ ├── quick-plot.md │ ├── save.md │ ├── scale-.md │ ├── scale- │ │ ├── character.svg │ │ ├── date.svg │ │ ├── functional-limits.svg │ │ ├── no-alpha-breaks-no-legend.svg │ │ ├── no-colour-breaks-no-legend.svg │ │ ├── no-fill-breaks-no-legend.svg │ │ ├── no-size-breaks-no-legend.svg │ │ ├── no-x-breaks.svg │ │ ├── no-y-breaks.svg │ │ ├── numeric-exp.svg │ │ ├── numeric-log.svg │ │ ├── numeric-polar.svg │ │ └── numeric.svg │ ├── scale-binned.md │ ├── scale-colour.md │ ├── scale-continuous.md │ ├── scale-date.md │ ├── scale-date │ │ ├── dates-along-x-default-breaks.svg │ │ ├── dates-along-y-default-breaks.svg │ │ ├── scale-x-date-breaks-3-weeks.svg │ │ ├── scale-x-date-breaks-breaks-width-2-weeks.svg │ │ ├── scale-x-date-labels-label-date-m-d.svg │ │ ├── scale-x-date-labels-label-date-w-week.svg │ │ ├── scale-y-date-breaks-3-weeks.svg │ │ └── scale-y-date-breaks-breaks-width-2-weeks.svg │ ├── scale-discrete.md │ ├── scale-expansion.md │ ├── scale-gradient.md │ ├── scale-hue.md │ ├── scale-manual.md │ ├── scales.md │ ├── stat-.md │ ├── stat-align │ │ ├── align-two-areas-with-cliff.svg │ │ ├── align-two-areas-with-pos-neg-y.svg │ │ └── align-two-areas.svg │ ├── stat-bin.md │ ├── stat-bin2d.md │ ├── stat-boxplot.md │ ├── stat-connect.md │ ├── stat-contour.md │ ├── stat-count.md │ ├── stat-density.md │ ├── stat-density2d.md │ ├── stat-ecdf.md │ ├── stat-function.md │ ├── stat-qq.md │ ├── stat-sum │ │ ├── summary-with-color-and-lines.svg │ │ ├── summary-with-crossbars-manual-grouping.svg │ │ └── summary-with-crossbars-no-grouping.svg │ ├── stat-ydensity.md │ ├── summarise-plot.md │ ├── summary.md │ ├── theme-defaults │ │ ├── theme-bw-large.svg │ │ ├── theme-bw.svg │ │ ├── theme-classic-large.svg │ │ ├── theme-classic.svg │ │ ├── theme-dark-large.svg │ │ ├── theme-dark.svg │ │ ├── theme-gray-large.svg │ │ ├── theme-gray.svg │ │ ├── theme-light-large.svg │ │ ├── theme-light.svg │ │ ├── theme-linedraw-large.svg │ │ ├── theme-linedraw.svg │ │ ├── theme-minimal-large.svg │ │ ├── theme-minimal.svg │ │ ├── theme-void-large.svg │ │ ├── theme-void.svg │ │ └── theme-with-inverted-colours.svg │ ├── theme-elements.md │ ├── theme-elements │ │ ├── point-elements.svg │ │ └── polygon-elements.svg │ ├── theme-sub.md │ ├── theme.md │ ├── theme │ │ ├── axes-styling.svg │ │ ├── caption-aligned-to-entire-plot.svg │ │ ├── custom-strip-elements-can-render.svg │ │ ├── height-is-3-times-width-2-column-facets.svg │ │ ├── height-is-3-times-width-2-row-facets.svg │ │ ├── height-is-3-times-width-2-wrap-facets.svg │ │ ├── height-is-3-times-width-2x2-facets.svg │ │ ├── height-is-3-times-width.svg │ │ ├── horizontal-legends-placed-apart.svg │ │ ├── large-margins.svg │ │ ├── large-spacing.svg │ │ ├── legends-at-all-sides-with-justification.svg │ │ ├── rotated-x-axis-tick-labels.svg │ │ ├── stretched-horizontal-legends.svg │ │ ├── stretched-vertical-legends.svg │ │ ├── strip-styling.svg │ │ ├── ticks-length.svg │ │ ├── titles-aligned-to-entire-plot.svg │ │ ├── vertical-legends-placed-apart.svg │ │ └── width-is-3-times-height.svg │ ├── utilities-break.md │ ├── utilities-checks.md │ ├── utilities-grid.md │ ├── utilities-help.md │ ├── utilities-lifecycle.md │ ├── utilities-patterns.md │ ├── utilities-patterns │ │ ├── pattern-fills-no-alpha.svg │ │ ├── pattern-fills-through-scale.svg │ │ ├── pattern-fills-with-alpha.svg │ │ └── single-pattern-fill.svg │ ├── utilities-performance.md │ └── utilities.md │ ├── helper-density.R │ ├── helper-facet.R │ ├── helper-plot-data.R │ ├── helper-vdiffr.R │ ├── test-aes-delayed-eval.R │ ├── test-aes-variants.R │ ├── test-aes.R │ ├── test-annotate.R │ ├── test-annotation-borders.R │ ├── test-annotation-custom.R │ ├── test-annotation-logticks.R │ ├── test-annotation-map.R │ ├── test-annotation-raster.R │ ├── test-autolayer.R │ ├── test-autoplot.R │ ├── test-axis-secondary.R │ ├── test-bin.R │ ├── test-coord-.R │ ├── test-coord-cartesian.R │ ├── test-coord-flip.R │ ├── test-coord-map.R │ ├── test-coord-munch.R │ ├── test-coord-polar.R │ ├── test-coord-sf.R │ ├── test-coord-transform.R │ ├── test-facet-.R │ ├── test-facet-grid-.R │ ├── test-facet-labeller.R │ ├── test-facet-wrap.R │ ├── test-fortify-spatial.R │ ├── test-fortify.R │ ├── test-function-args.R │ ├── test-geom-.R │ ├── test-geom-abline-hline-vline.R │ ├── test-geom-bar.R │ ├── test-geom-boxplot.R │ ├── test-geom-curve.R │ ├── test-geom-dotplot.R │ ├── test-geom-errorbar.R │ ├── test-geom-freqpoly.R │ ├── test-geom-hex.R │ ├── test-geom-jitter.R │ ├── test-geom-label.R │ ├── test-geom-linerange.R │ ├── test-geom-map.R │ ├── test-geom-path.R │ ├── test-geom-point.R │ ├── test-geom-polygon.R │ ├── test-geom-quantile.R │ ├── test-geom-raster.R │ ├── test-geom-rect.R │ ├── test-geom-ribbon.R │ ├── test-geom-rug.R │ ├── test-geom-sf.R │ ├── test-geom-smooth.R │ ├── test-geom-spoke.R │ ├── test-geom-text.R │ ├── test-geom-tile.R │ ├── test-geom-update-defaults.R │ ├── test-geom-violin.R │ ├── test-ggproto.R │ ├── test-grouping.R │ ├── test-guide-.R │ ├── test-guide-axis.R │ ├── test-guide-bins.R │ ├── test-guide-colorbar.R │ ├── test-guide-colorsteps.R │ ├── test-guide-custom.R │ ├── test-guide-legend.R │ ├── test-guide-none.R │ ├── test-guide-old.R │ ├── test-guides.R │ ├── test-labels.R │ ├── test-layer.R │ ├── test-legend-draw.R │ ├── test-limits.R │ ├── test-make-constructor.R │ ├── test-margins.R │ ├── test-plot-build.R │ ├── test-plot.R │ ├── test-position-collide.R │ ├── test-position-dodge.R │ ├── test-position-dodge2.R │ ├── test-position-jitter.R │ ├── test-position-jitterdodge.R │ ├── test-position-nudge.R │ ├── test-position-stack.R │ ├── test-prohibited-functions.R │ ├── test-properties.R │ ├── test-quick-plot.R │ ├── test-save.R │ ├── test-scale-.R │ ├── test-scale-binned.R │ ├── test-scale-brewer.R │ ├── test-scale-colour.R │ ├── test-scale-continuous.R │ ├── test-scale-date.R │ ├── test-scale-discrete.R │ ├── test-scale-expansion.R │ ├── test-scale-gradient.R │ ├── test-scale-hue.R │ ├── test-scale-identity.R │ ├── test-scale-manual.R │ ├── test-scale-type.R │ ├── test-scale-view.R │ ├── test-scale-viridis.R │ ├── test-scales.R │ ├── test-stat-.R │ ├── test-stat-align.R │ ├── test-stat-bin.R │ ├── test-stat-bin2d.R │ ├── test-stat-boxplot.R │ ├── test-stat-connect.R │ ├── test-stat-contour.R │ ├── test-stat-count.R │ ├── test-stat-density.R │ ├── test-stat-density2d.R │ ├── test-stat-ecdf.R │ ├── test-stat-ellipsis.R │ ├── test-stat-function.R │ ├── test-stat-hex.R │ ├── test-stat-manual.R │ ├── test-stat-qq.R │ ├── test-stat-sf-coordinates.R │ ├── test-stat-sum.R │ ├── test-stat-summary.R │ ├── test-stat-ydensity.R │ ├── test-summarise-plot.R │ ├── test-summary.R │ ├── test-theme-current.R │ ├── test-theme-defaults.R │ ├── test-theme-elements.R │ ├── test-theme-sub.R │ ├── test-theme.R │ ├── test-utilities-break.R │ ├── test-utilities-checks.R │ ├── test-utilities-grid.R │ ├── test-utilities-help.R │ ├── test-utilities-lifecycle.R │ ├── test-utilities-patterns.R │ ├── test-utilities-performance.R │ ├── test-utilities-resolution.R │ ├── test-utilities.R │ └── test-zzz.R └── vignettes ├── .gitignore ├── articles ├── faq-annotation.qmd ├── faq-axes.qmd ├── faq-bars.qmd ├── faq-customising.qmd ├── faq-faceting.qmd └── faq-reordering.qmd ├── car.png ├── extending-ggplot2.qmd ├── ggplot2-in-packages.qmd ├── ggplot2-specs.qmd ├── ggplot2.qmd ├── profiling.qmd └── profilings └── 3.1.0.rds /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | NEWS.md merge=union 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/move.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: ggplot2 core developer team 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aes-delayed-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/aes-delayed-eval.R -------------------------------------------------------------------------------- /R/aes-variants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/aes-variants.R -------------------------------------------------------------------------------- /R/aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/aes.R -------------------------------------------------------------------------------- /R/all-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/all-classes.R -------------------------------------------------------------------------------- /R/annotate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotate.R -------------------------------------------------------------------------------- /R/annotation-borders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotation-borders.R -------------------------------------------------------------------------------- /R/annotation-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotation-custom.R -------------------------------------------------------------------------------- /R/annotation-logticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotation-logticks.R -------------------------------------------------------------------------------- /R/annotation-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotation-map.R -------------------------------------------------------------------------------- /R/annotation-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/annotation-raster.R -------------------------------------------------------------------------------- /R/autolayer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/autolayer.R -------------------------------------------------------------------------------- /R/autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/autoplot.R -------------------------------------------------------------------------------- /R/axis-secondary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/axis-secondary.R -------------------------------------------------------------------------------- /R/backports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/backports.R -------------------------------------------------------------------------------- /R/bench.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/bench.R -------------------------------------------------------------------------------- /R/bin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/bin.R -------------------------------------------------------------------------------- /R/compat-plyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/compat-plyr.R -------------------------------------------------------------------------------- /R/coord-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-.R -------------------------------------------------------------------------------- /R/coord-cartesian-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-cartesian-.R -------------------------------------------------------------------------------- /R/coord-fixed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-fixed.R -------------------------------------------------------------------------------- /R/coord-flip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-flip.R -------------------------------------------------------------------------------- /R/coord-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-map.R -------------------------------------------------------------------------------- /R/coord-munch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-munch.R -------------------------------------------------------------------------------- /R/coord-polar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-polar.R -------------------------------------------------------------------------------- /R/coord-quickmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-quickmap.R -------------------------------------------------------------------------------- /R/coord-radial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-radial.R -------------------------------------------------------------------------------- /R/coord-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-sf.R -------------------------------------------------------------------------------- /R/coord-transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/coord-transform.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/data.R -------------------------------------------------------------------------------- /R/docs-aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/docs-aes.R -------------------------------------------------------------------------------- /R/docs-layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/docs-layer.R -------------------------------------------------------------------------------- /R/facet-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/facet-.R -------------------------------------------------------------------------------- /R/facet-grid-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/facet-grid-.R -------------------------------------------------------------------------------- /R/facet-labeller.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/facet-labeller.R -------------------------------------------------------------------------------- /R/facet-null.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/facet-null.R -------------------------------------------------------------------------------- /R/facet-wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/facet-wrap.R -------------------------------------------------------------------------------- /R/fortify-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/fortify-map.R -------------------------------------------------------------------------------- /R/fortify-models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/fortify-models.R -------------------------------------------------------------------------------- /R/fortify-spatial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/fortify-spatial.R -------------------------------------------------------------------------------- /R/fortify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/fortify.R -------------------------------------------------------------------------------- /R/geom-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-.R -------------------------------------------------------------------------------- /R/geom-abline-hline-vline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-abline-hline-vline.R -------------------------------------------------------------------------------- /R/geom-bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-bar.R -------------------------------------------------------------------------------- /R/geom-bin2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-bin2d.R -------------------------------------------------------------------------------- /R/geom-blank.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-blank.R -------------------------------------------------------------------------------- /R/geom-boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-boxplot.R -------------------------------------------------------------------------------- /R/geom-contour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-contour.R -------------------------------------------------------------------------------- /R/geom-count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-count.R -------------------------------------------------------------------------------- /R/geom-crossbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-crossbar.R -------------------------------------------------------------------------------- /R/geom-curve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-curve.R -------------------------------------------------------------------------------- /R/geom-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-density.R -------------------------------------------------------------------------------- /R/geom-density2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-density2d.R -------------------------------------------------------------------------------- /R/geom-dotplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-dotplot.R -------------------------------------------------------------------------------- /R/geom-errorbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-errorbar.R -------------------------------------------------------------------------------- /R/geom-freqpoly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-freqpoly.R -------------------------------------------------------------------------------- /R/geom-function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-function.R -------------------------------------------------------------------------------- /R/geom-hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-hex.R -------------------------------------------------------------------------------- /R/geom-histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-histogram.R -------------------------------------------------------------------------------- /R/geom-jitter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-jitter.R -------------------------------------------------------------------------------- /R/geom-label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-label.R -------------------------------------------------------------------------------- /R/geom-linerange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-linerange.R -------------------------------------------------------------------------------- /R/geom-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-map.R -------------------------------------------------------------------------------- /R/geom-path.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-path.R -------------------------------------------------------------------------------- /R/geom-point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-point.R -------------------------------------------------------------------------------- /R/geom-pointrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-pointrange.R -------------------------------------------------------------------------------- /R/geom-polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-polygon.R -------------------------------------------------------------------------------- /R/geom-quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-quantile.R -------------------------------------------------------------------------------- /R/geom-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-raster.R -------------------------------------------------------------------------------- /R/geom-rect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-rect.R -------------------------------------------------------------------------------- /R/geom-ribbon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-ribbon.R -------------------------------------------------------------------------------- /R/geom-rug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-rug.R -------------------------------------------------------------------------------- /R/geom-segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-segment.R -------------------------------------------------------------------------------- /R/geom-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-sf.R -------------------------------------------------------------------------------- /R/geom-smooth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-smooth.R -------------------------------------------------------------------------------- /R/geom-spoke.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-spoke.R -------------------------------------------------------------------------------- /R/geom-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-text.R -------------------------------------------------------------------------------- /R/geom-tile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-tile.R -------------------------------------------------------------------------------- /R/geom-update-defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-update-defaults.R -------------------------------------------------------------------------------- /R/geom-violin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/geom-violin.R -------------------------------------------------------------------------------- /R/ggplot-global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/ggplot-global.R -------------------------------------------------------------------------------- /R/ggplot2-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/ggplot2-package.R -------------------------------------------------------------------------------- /R/ggproto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/ggproto.R -------------------------------------------------------------------------------- /R/grob-absolute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/grob-absolute.R -------------------------------------------------------------------------------- /R/grob-dotstack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/grob-dotstack.R -------------------------------------------------------------------------------- /R/grouping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/grouping.R -------------------------------------------------------------------------------- /R/guide-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-.R -------------------------------------------------------------------------------- /R/guide-axis-logticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-axis-logticks.R -------------------------------------------------------------------------------- /R/guide-axis-stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-axis-stack.R -------------------------------------------------------------------------------- /R/guide-axis-theta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-axis-theta.R -------------------------------------------------------------------------------- /R/guide-axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-axis.R -------------------------------------------------------------------------------- /R/guide-bins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-bins.R -------------------------------------------------------------------------------- /R/guide-colorbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-colorbar.R -------------------------------------------------------------------------------- /R/guide-colorsteps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-colorsteps.R -------------------------------------------------------------------------------- /R/guide-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-custom.R -------------------------------------------------------------------------------- /R/guide-legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-legend.R -------------------------------------------------------------------------------- /R/guide-none.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-none.R -------------------------------------------------------------------------------- /R/guide-old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guide-old.R -------------------------------------------------------------------------------- /R/guides-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guides-.R -------------------------------------------------------------------------------- /R/guides-grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/guides-grid.R -------------------------------------------------------------------------------- /R/hexbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/hexbin.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/labels.R -------------------------------------------------------------------------------- /R/layer-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/layer-sf.R -------------------------------------------------------------------------------- /R/layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/layer.R -------------------------------------------------------------------------------- /R/layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/layout.R -------------------------------------------------------------------------------- /R/legend-draw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/legend-draw.R -------------------------------------------------------------------------------- /R/limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/limits.R -------------------------------------------------------------------------------- /R/make-constructor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/make-constructor.R -------------------------------------------------------------------------------- /R/margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/margins.R -------------------------------------------------------------------------------- /R/plot-build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/plot-build.R -------------------------------------------------------------------------------- /R/plot-construction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/plot-construction.R -------------------------------------------------------------------------------- /R/plot-last.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/plot-last.R -------------------------------------------------------------------------------- /R/plot-render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/plot-render.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/position-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-.R -------------------------------------------------------------------------------- /R/position-collide.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-collide.R -------------------------------------------------------------------------------- /R/position-dodge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-dodge.R -------------------------------------------------------------------------------- /R/position-dodge2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-dodge2.R -------------------------------------------------------------------------------- /R/position-identity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-identity.R -------------------------------------------------------------------------------- /R/position-jitter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-jitter.R -------------------------------------------------------------------------------- /R/position-jitterdodge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-jitterdodge.R -------------------------------------------------------------------------------- /R/position-nudge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-nudge.R -------------------------------------------------------------------------------- /R/position-stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/position-stack.R -------------------------------------------------------------------------------- /R/properties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/properties.R -------------------------------------------------------------------------------- /R/quick-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/quick-plot.R -------------------------------------------------------------------------------- /R/reshape-add-margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/reshape-add-margins.R -------------------------------------------------------------------------------- /R/save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/save.R -------------------------------------------------------------------------------- /R/scale-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-.R -------------------------------------------------------------------------------- /R/scale-alpha.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-alpha.R -------------------------------------------------------------------------------- /R/scale-binned.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-binned.R -------------------------------------------------------------------------------- /R/scale-brewer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-brewer.R -------------------------------------------------------------------------------- /R/scale-colour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-colour.R -------------------------------------------------------------------------------- /R/scale-continuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-continuous.R -------------------------------------------------------------------------------- /R/scale-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-date.R -------------------------------------------------------------------------------- /R/scale-discrete-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-discrete-.R -------------------------------------------------------------------------------- /R/scale-expansion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-expansion.R -------------------------------------------------------------------------------- /R/scale-gradient.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-gradient.R -------------------------------------------------------------------------------- /R/scale-grey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-grey.R -------------------------------------------------------------------------------- /R/scale-hue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-hue.R -------------------------------------------------------------------------------- /R/scale-identity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-identity.R -------------------------------------------------------------------------------- /R/scale-linetype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-linetype.R -------------------------------------------------------------------------------- /R/scale-linewidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-linewidth.R -------------------------------------------------------------------------------- /R/scale-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-manual.R -------------------------------------------------------------------------------- /R/scale-shape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-shape.R -------------------------------------------------------------------------------- /R/scale-size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-size.R -------------------------------------------------------------------------------- /R/scale-steps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-steps.R -------------------------------------------------------------------------------- /R/scale-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-type.R -------------------------------------------------------------------------------- /R/scale-view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-view.R -------------------------------------------------------------------------------- /R/scale-viridis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scale-viridis.R -------------------------------------------------------------------------------- /R/scales-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/scales-.R -------------------------------------------------------------------------------- /R/stat-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-.R -------------------------------------------------------------------------------- /R/stat-align.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-align.R -------------------------------------------------------------------------------- /R/stat-bin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-bin.R -------------------------------------------------------------------------------- /R/stat-bin2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-bin2d.R -------------------------------------------------------------------------------- /R/stat-bindot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-bindot.R -------------------------------------------------------------------------------- /R/stat-binhex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-binhex.R -------------------------------------------------------------------------------- /R/stat-boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-boxplot.R -------------------------------------------------------------------------------- /R/stat-connect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-connect.R -------------------------------------------------------------------------------- /R/stat-contour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-contour.R -------------------------------------------------------------------------------- /R/stat-count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-count.R -------------------------------------------------------------------------------- /R/stat-density-2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-density-2d.R -------------------------------------------------------------------------------- /R/stat-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-density.R -------------------------------------------------------------------------------- /R/stat-ecdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-ecdf.R -------------------------------------------------------------------------------- /R/stat-ellipse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-ellipse.R -------------------------------------------------------------------------------- /R/stat-function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-function.R -------------------------------------------------------------------------------- /R/stat-identity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-identity.R -------------------------------------------------------------------------------- /R/stat-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-manual.R -------------------------------------------------------------------------------- /R/stat-qq-line.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-qq-line.R -------------------------------------------------------------------------------- /R/stat-qq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-qq.R -------------------------------------------------------------------------------- /R/stat-quantilemethods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-quantilemethods.R -------------------------------------------------------------------------------- /R/stat-sf-coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-sf-coordinates.R -------------------------------------------------------------------------------- /R/stat-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-sf.R -------------------------------------------------------------------------------- /R/stat-smooth-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-smooth-methods.R -------------------------------------------------------------------------------- /R/stat-smooth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-smooth.R -------------------------------------------------------------------------------- /R/stat-sum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-sum.R -------------------------------------------------------------------------------- /R/stat-summary-2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-summary-2d.R -------------------------------------------------------------------------------- /R/stat-summary-bin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-summary-bin.R -------------------------------------------------------------------------------- /R/stat-summary-hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-summary-hex.R -------------------------------------------------------------------------------- /R/stat-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-summary.R -------------------------------------------------------------------------------- /R/stat-unique.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-unique.R -------------------------------------------------------------------------------- /R/stat-ydensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/stat-ydensity.R -------------------------------------------------------------------------------- /R/summarise-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/summarise-plot.R -------------------------------------------------------------------------------- /R/summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/summary.R -------------------------------------------------------------------------------- /R/theme-current.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/theme-current.R -------------------------------------------------------------------------------- /R/theme-defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/theme-defaults.R -------------------------------------------------------------------------------- /R/theme-elements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/theme-elements.R -------------------------------------------------------------------------------- /R/theme-sub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/theme-sub.R -------------------------------------------------------------------------------- /R/theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/theme.R -------------------------------------------------------------------------------- /R/utilities-break.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-break.R -------------------------------------------------------------------------------- /R/utilities-checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-checks.R -------------------------------------------------------------------------------- /R/utilities-grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-grid.R -------------------------------------------------------------------------------- /R/utilities-help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-help.R -------------------------------------------------------------------------------- /R/utilities-lifecycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-lifecycle.R -------------------------------------------------------------------------------- /R/utilities-patterns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-patterns.R -------------------------------------------------------------------------------- /R/utilities-performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-performance.R -------------------------------------------------------------------------------- /R/utilities-resolution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-resolution.R -------------------------------------------------------------------------------- /R/utilities-tidy-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities-tidy-eval.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/zxx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/zxx.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/diamonds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/diamonds.R -------------------------------------------------------------------------------- /data-raw/diamonds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/diamonds.csv -------------------------------------------------------------------------------- /data-raw/economics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics.R -------------------------------------------------------------------------------- /data-raw/economics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics.csv -------------------------------------------------------------------------------- /data-raw/economics_raw/PCE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics_raw/PCE.csv -------------------------------------------------------------------------------- /data-raw/economics_raw/POP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics_raw/POP.csv -------------------------------------------------------------------------------- /data-raw/economics_raw/PSAVERT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics_raw/PSAVERT.csv -------------------------------------------------------------------------------- /data-raw/economics_raw/UEMPMED.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics_raw/UEMPMED.csv -------------------------------------------------------------------------------- /data-raw/economics_raw/UNEMPLOY.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/economics_raw/UNEMPLOY.csv -------------------------------------------------------------------------------- /data-raw/faithfuld.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/faithfuld.R -------------------------------------------------------------------------------- /data-raw/luv_colours.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/luv_colours.R -------------------------------------------------------------------------------- /data-raw/midwest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/midwest.R -------------------------------------------------------------------------------- /data-raw/midwest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/midwest.csv -------------------------------------------------------------------------------- /data-raw/mpg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/mpg.R -------------------------------------------------------------------------------- /data-raw/mpg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/mpg.csv -------------------------------------------------------------------------------- /data-raw/msleep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/msleep.R -------------------------------------------------------------------------------- /data-raw/msleep.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/msleep.csv -------------------------------------------------------------------------------- /data-raw/presidential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/presidential.R -------------------------------------------------------------------------------- /data-raw/presidential.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/presidential.csv -------------------------------------------------------------------------------- /data-raw/seals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/seals.R -------------------------------------------------------------------------------- /data-raw/seals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/seals.csv -------------------------------------------------------------------------------- /data-raw/tx-housing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/tx-housing.R -------------------------------------------------------------------------------- /data-raw/tx-housing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data-raw/tx-housing.csv -------------------------------------------------------------------------------- /data/diamonds.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/diamonds.rda -------------------------------------------------------------------------------- /data/economics.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/economics.rda -------------------------------------------------------------------------------- /data/economics_long.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/economics_long.rda -------------------------------------------------------------------------------- /data/faithfuld.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/faithfuld.rda -------------------------------------------------------------------------------- /data/luv_colours.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/luv_colours.rda -------------------------------------------------------------------------------- /data/midwest.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/midwest.rda -------------------------------------------------------------------------------- /data/mpg.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/mpg.rda -------------------------------------------------------------------------------- /data/msleep.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/msleep.rda -------------------------------------------------------------------------------- /data/presidential.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/presidential.rda -------------------------------------------------------------------------------- /data/seals.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/seals.rda -------------------------------------------------------------------------------- /data/txhousing.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/data/txhousing.rda -------------------------------------------------------------------------------- /ggplot2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/ggplot2.Rproj -------------------------------------------------------------------------------- /icons/coord_cartesian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_cartesian.png -------------------------------------------------------------------------------- /icons/coord_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_fixed.png -------------------------------------------------------------------------------- /icons/coord_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_flip.png -------------------------------------------------------------------------------- /icons/coord_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_map.png -------------------------------------------------------------------------------- /icons/coord_polar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_polar.png -------------------------------------------------------------------------------- /icons/coord_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/coord_transform.png -------------------------------------------------------------------------------- /icons/facet_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/facet_grid.png -------------------------------------------------------------------------------- /icons/facet_wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/facet_wrap.png -------------------------------------------------------------------------------- /icons/geom_abline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_abline.png -------------------------------------------------------------------------------- /icons/geom_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_area.png -------------------------------------------------------------------------------- /icons/geom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_bar.png -------------------------------------------------------------------------------- /icons/geom_bin2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_bin2d.png -------------------------------------------------------------------------------- /icons/geom_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_blank.png -------------------------------------------------------------------------------- /icons/geom_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_boxplot.png -------------------------------------------------------------------------------- /icons/geom_contour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_contour.png -------------------------------------------------------------------------------- /icons/geom_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_count.png -------------------------------------------------------------------------------- /icons/geom_crossbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_crossbar.png -------------------------------------------------------------------------------- /icons/geom_density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_density.png -------------------------------------------------------------------------------- /icons/geom_dotplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_dotplot.png -------------------------------------------------------------------------------- /icons/geom_freqpoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_freqpoly.png -------------------------------------------------------------------------------- /icons/geom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_hex.png -------------------------------------------------------------------------------- /icons/geom_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_histogram.png -------------------------------------------------------------------------------- /icons/geom_jitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_jitter.png -------------------------------------------------------------------------------- /icons/geom_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_line.png -------------------------------------------------------------------------------- /icons/geom_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_map.png -------------------------------------------------------------------------------- /icons/geom_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_path.png -------------------------------------------------------------------------------- /icons/geom_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_point.png -------------------------------------------------------------------------------- /icons/geom_pointrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_pointrange.png -------------------------------------------------------------------------------- /icons/geom_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_polygon.png -------------------------------------------------------------------------------- /icons/geom_quantile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_quantile.png -------------------------------------------------------------------------------- /icons/geom_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_raster.png -------------------------------------------------------------------------------- /icons/geom_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_rect.png -------------------------------------------------------------------------------- /icons/geom_ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_ribbon.png -------------------------------------------------------------------------------- /icons/geom_rug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_rug.png -------------------------------------------------------------------------------- /icons/geom_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_segment.png -------------------------------------------------------------------------------- /icons/geom_sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_sf.png -------------------------------------------------------------------------------- /icons/geom_smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_smooth.png -------------------------------------------------------------------------------- /icons/geom_spoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_spoke.png -------------------------------------------------------------------------------- /icons/geom_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_step.png -------------------------------------------------------------------------------- /icons/geom_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_text.png -------------------------------------------------------------------------------- /icons/geom_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_tile.png -------------------------------------------------------------------------------- /icons/geom_violin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/geom_violin.png -------------------------------------------------------------------------------- /icons/icons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/icons.R -------------------------------------------------------------------------------- /icons/position_dodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/position_dodge.png -------------------------------------------------------------------------------- /icons/position_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/position_fill.png -------------------------------------------------------------------------------- /icons/position_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/position_identity.png -------------------------------------------------------------------------------- /icons/position_jitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/position_jitter.png -------------------------------------------------------------------------------- /icons/position_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/position_stack.png -------------------------------------------------------------------------------- /icons/scale_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_alpha.png -------------------------------------------------------------------------------- /icons/scale_colour_brewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_brewer.png -------------------------------------------------------------------------------- /icons/scale_colour_continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_continuous.png -------------------------------------------------------------------------------- /icons/scale_colour_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_gradient.png -------------------------------------------------------------------------------- /icons/scale_colour_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_grey.png -------------------------------------------------------------------------------- /icons/scale_colour_hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_hue.png -------------------------------------------------------------------------------- /icons/scale_colour_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_manual.png -------------------------------------------------------------------------------- /icons/scale_colour_viridis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_viridis.png -------------------------------------------------------------------------------- /icons/scale_colour_viridis_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_colour_viridis_d.png -------------------------------------------------------------------------------- /icons/scale_linetype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_linetype.png -------------------------------------------------------------------------------- /icons/scale_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_shape.png -------------------------------------------------------------------------------- /icons/scale_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_size.png -------------------------------------------------------------------------------- /icons/scale_x_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/icons/scale_x_date.png -------------------------------------------------------------------------------- /inst/.gitignore: -------------------------------------------------------------------------------- 1 | web 2 | -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/AxisSecondary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/AxisSecondary.Rd -------------------------------------------------------------------------------- /man/Coord.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Coord.Rd -------------------------------------------------------------------------------- /man/Facet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Facet.Rd -------------------------------------------------------------------------------- /man/Geom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Geom.Rd -------------------------------------------------------------------------------- /man/Guide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Guide.Rd -------------------------------------------------------------------------------- /man/Layer-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Layer-class.Rd -------------------------------------------------------------------------------- /man/Layout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Layout.Rd -------------------------------------------------------------------------------- /man/Position.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Position.Rd -------------------------------------------------------------------------------- /man/Scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Scale.Rd -------------------------------------------------------------------------------- /man/Stat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/Stat.Rd -------------------------------------------------------------------------------- /man/absoluteGrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/absoluteGrob.Rd -------------------------------------------------------------------------------- /man/add_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/add_theme.Rd -------------------------------------------------------------------------------- /man/aes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes.Rd -------------------------------------------------------------------------------- /man/aes_.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_.Rd -------------------------------------------------------------------------------- /man/aes_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_all.Rd -------------------------------------------------------------------------------- /man/aes_auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_auto.Rd -------------------------------------------------------------------------------- /man/aes_colour_fill_alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_colour_fill_alpha.Rd -------------------------------------------------------------------------------- /man/aes_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_eval.Rd -------------------------------------------------------------------------------- /man/aes_group_order.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_group_order.Rd -------------------------------------------------------------------------------- /man/aes_linetype_size_shape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_linetype_size_shape.Rd -------------------------------------------------------------------------------- /man/aes_position.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/aes_position.Rd -------------------------------------------------------------------------------- /man/annotate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotate.Rd -------------------------------------------------------------------------------- /man/annotation_borders.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotation_borders.Rd -------------------------------------------------------------------------------- /man/annotation_custom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotation_custom.Rd -------------------------------------------------------------------------------- /man/annotation_logticks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotation_logticks.Rd -------------------------------------------------------------------------------- /man/annotation_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotation_map.Rd -------------------------------------------------------------------------------- /man/annotation_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/annotation_raster.Rd -------------------------------------------------------------------------------- /man/as.list.ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/as.list.ggproto.Rd -------------------------------------------------------------------------------- /man/as_labeller.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/as_labeller.Rd -------------------------------------------------------------------------------- /man/autolayer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/autolayer.Rd -------------------------------------------------------------------------------- /man/automatic_plotting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/automatic_plotting.Rd -------------------------------------------------------------------------------- /man/autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/autoplot.Rd -------------------------------------------------------------------------------- /man/benchplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/benchplot.Rd -------------------------------------------------------------------------------- /man/bidirection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/bidirection.Rd -------------------------------------------------------------------------------- /man/binned_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/binned_scale.Rd -------------------------------------------------------------------------------- /man/calc_element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/calc_element.Rd -------------------------------------------------------------------------------- /man/check_device.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/check_device.Rd -------------------------------------------------------------------------------- /man/class_definitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_definitions.Rd -------------------------------------------------------------------------------- /man/class_ggplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_ggplot.Rd -------------------------------------------------------------------------------- /man/class_ggplot_built.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_ggplot_built.Rd -------------------------------------------------------------------------------- /man/class_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_labels.Rd -------------------------------------------------------------------------------- /man/class_mapping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_mapping.Rd -------------------------------------------------------------------------------- /man/class_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/class_theme.Rd -------------------------------------------------------------------------------- /man/combine_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/combine_vars.Rd -------------------------------------------------------------------------------- /man/complete_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/complete_theme.Rd -------------------------------------------------------------------------------- /man/continuous_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/continuous_scale.Rd -------------------------------------------------------------------------------- /man/coord_cartesian.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_cartesian.Rd -------------------------------------------------------------------------------- /man/coord_fixed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_fixed.Rd -------------------------------------------------------------------------------- /man/coord_flip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_flip.Rd -------------------------------------------------------------------------------- /man/coord_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_map.Rd -------------------------------------------------------------------------------- /man/coord_munch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_munch.Rd -------------------------------------------------------------------------------- /man/coord_radial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_radial.Rd -------------------------------------------------------------------------------- /man/coord_transform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/coord_transform.Rd -------------------------------------------------------------------------------- /man/cut_interval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/cut_interval.Rd -------------------------------------------------------------------------------- /man/datetime_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/datetime_scale.Rd -------------------------------------------------------------------------------- /man/diamonds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/diamonds.Rd -------------------------------------------------------------------------------- /man/discrete_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/discrete_scale.Rd -------------------------------------------------------------------------------- /man/draw_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/draw_key.Rd -------------------------------------------------------------------------------- /man/economics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/economics.Rd -------------------------------------------------------------------------------- /man/element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/element.Rd -------------------------------------------------------------------------------- /man/element_grob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/element_grob.Rd -------------------------------------------------------------------------------- /man/element_render.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/element_render.Rd -------------------------------------------------------------------------------- /man/expand_limits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/expand_limits.Rd -------------------------------------------------------------------------------- /man/expansion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/expansion.Rd -------------------------------------------------------------------------------- /man/facet_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/facet_grid.Rd -------------------------------------------------------------------------------- /man/facet_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/facet_null.Rd -------------------------------------------------------------------------------- /man/facet_wrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/facet_wrap.Rd -------------------------------------------------------------------------------- /man/faithfuld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/faithfuld.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/linetype_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/linetype_table.pdf -------------------------------------------------------------------------------- /man/figures/linetype_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/linetype_table.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/shape_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/shape_table.pdf -------------------------------------------------------------------------------- /man/figures/shape_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/figures/shape_table.svg -------------------------------------------------------------------------------- /man/fill_alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fill_alpha.Rd -------------------------------------------------------------------------------- /man/find_panel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/find_panel.Rd -------------------------------------------------------------------------------- /man/fortify-multcomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fortify-multcomp.Rd -------------------------------------------------------------------------------- /man/fortify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fortify.Rd -------------------------------------------------------------------------------- /man/fortify.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fortify.lm.Rd -------------------------------------------------------------------------------- /man/fortify.map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fortify.map.Rd -------------------------------------------------------------------------------- /man/fortify.sp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/fortify.sp.Rd -------------------------------------------------------------------------------- /man/geom_abline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_abline.Rd -------------------------------------------------------------------------------- /man/geom_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_bar.Rd -------------------------------------------------------------------------------- /man/geom_bin_2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_bin_2d.Rd -------------------------------------------------------------------------------- /man/geom_blank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_blank.Rd -------------------------------------------------------------------------------- /man/geom_boxplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_boxplot.Rd -------------------------------------------------------------------------------- /man/geom_contour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_contour.Rd -------------------------------------------------------------------------------- /man/geom_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_count.Rd -------------------------------------------------------------------------------- /man/geom_density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_density.Rd -------------------------------------------------------------------------------- /man/geom_density_2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_density_2d.Rd -------------------------------------------------------------------------------- /man/geom_dotplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_dotplot.Rd -------------------------------------------------------------------------------- /man/geom_function.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_function.Rd -------------------------------------------------------------------------------- /man/geom_hex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_hex.Rd -------------------------------------------------------------------------------- /man/geom_histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_histogram.Rd -------------------------------------------------------------------------------- /man/geom_jitter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_jitter.Rd -------------------------------------------------------------------------------- /man/geom_linerange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_linerange.Rd -------------------------------------------------------------------------------- /man/geom_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_map.Rd -------------------------------------------------------------------------------- /man/geom_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_path.Rd -------------------------------------------------------------------------------- /man/geom_point.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_point.Rd -------------------------------------------------------------------------------- /man/geom_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_polygon.Rd -------------------------------------------------------------------------------- /man/geom_qq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_qq.Rd -------------------------------------------------------------------------------- /man/geom_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_quantile.Rd -------------------------------------------------------------------------------- /man/geom_ribbon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_ribbon.Rd -------------------------------------------------------------------------------- /man/geom_rug.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_rug.Rd -------------------------------------------------------------------------------- /man/geom_segment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_segment.Rd -------------------------------------------------------------------------------- /man/geom_smooth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_smooth.Rd -------------------------------------------------------------------------------- /man/geom_spoke.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_spoke.Rd -------------------------------------------------------------------------------- /man/geom_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_text.Rd -------------------------------------------------------------------------------- /man/geom_tile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_tile.Rd -------------------------------------------------------------------------------- /man/geom_violin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/geom_violin.Rd -------------------------------------------------------------------------------- /man/get_alt_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_alt_text.Rd -------------------------------------------------------------------------------- /man/get_geom_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_geom_defaults.Rd -------------------------------------------------------------------------------- /man/get_guide_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_guide_data.Rd -------------------------------------------------------------------------------- /man/get_last_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_last_plot.Rd -------------------------------------------------------------------------------- /man/get_strip_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_strip_labels.Rd -------------------------------------------------------------------------------- /man/get_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/get_theme.Rd -------------------------------------------------------------------------------- /man/gg-add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/gg-add.Rd -------------------------------------------------------------------------------- /man/gg_dep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/gg_dep.Rd -------------------------------------------------------------------------------- /man/gg_par.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/gg_par.Rd -------------------------------------------------------------------------------- /man/ggplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggplot.Rd -------------------------------------------------------------------------------- /man/ggplot2-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggplot2-package.Rd -------------------------------------------------------------------------------- /man/ggplotGrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggplotGrob.Rd -------------------------------------------------------------------------------- /man/ggplot_build.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggplot_build.Rd -------------------------------------------------------------------------------- /man/ggplot_gtable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggplot_gtable.Rd -------------------------------------------------------------------------------- /man/ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggproto.Rd -------------------------------------------------------------------------------- /man/ggsave.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggsave.Rd -------------------------------------------------------------------------------- /man/ggsf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggsf.Rd -------------------------------------------------------------------------------- /man/ggtheme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ggtheme.Rd -------------------------------------------------------------------------------- /man/graphical-units.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/graphical-units.Rd -------------------------------------------------------------------------------- /man/guide_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_axis.Rd -------------------------------------------------------------------------------- /man/guide_axis_logticks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_axis_logticks.Rd -------------------------------------------------------------------------------- /man/guide_axis_stack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_axis_stack.Rd -------------------------------------------------------------------------------- /man/guide_axis_theta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_axis_theta.Rd -------------------------------------------------------------------------------- /man/guide_bins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_bins.Rd -------------------------------------------------------------------------------- /man/guide_colourbar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_colourbar.Rd -------------------------------------------------------------------------------- /man/guide_coloursteps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_coloursteps.Rd -------------------------------------------------------------------------------- /man/guide_custom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_custom.Rd -------------------------------------------------------------------------------- /man/guide_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_legend.Rd -------------------------------------------------------------------------------- /man/guide_none.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guide_none.Rd -------------------------------------------------------------------------------- /man/guides.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/guides.Rd -------------------------------------------------------------------------------- /man/hmisc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/hmisc.Rd -------------------------------------------------------------------------------- /man/ignoring_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/ignoring_data.Rd -------------------------------------------------------------------------------- /man/is_rel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/is_rel.Rd -------------------------------------------------------------------------------- /man/is_tests.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/is_tests.Rd -------------------------------------------------------------------------------- /man/label_bquote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/label_bquote.Rd -------------------------------------------------------------------------------- /man/labeller.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/labeller.Rd -------------------------------------------------------------------------------- /man/labellers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/labellers.Rd -------------------------------------------------------------------------------- /man/labs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/labs.Rd -------------------------------------------------------------------------------- /man/layer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/layer.Rd -------------------------------------------------------------------------------- /man/layer_geoms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/layer_geoms.Rd -------------------------------------------------------------------------------- /man/layer_positions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/layer_positions.Rd -------------------------------------------------------------------------------- /man/layer_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/layer_sf.Rd -------------------------------------------------------------------------------- /man/layer_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/layer_stats.Rd -------------------------------------------------------------------------------- /man/limits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/limits.Rd -------------------------------------------------------------------------------- /man/lims.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/lims.Rd -------------------------------------------------------------------------------- /man/luv_colours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/luv_colours.Rd -------------------------------------------------------------------------------- /man/make_constructor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/make_constructor.Rd -------------------------------------------------------------------------------- /man/map_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/map_data.Rd -------------------------------------------------------------------------------- /man/max_height.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/max_height.Rd -------------------------------------------------------------------------------- /man/mean_se.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/mean_se.Rd -------------------------------------------------------------------------------- /man/merge_element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/merge_element.Rd -------------------------------------------------------------------------------- /man/midwest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/midwest.Rd -------------------------------------------------------------------------------- /man/mpg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/mpg.Rd -------------------------------------------------------------------------------- /man/msleep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/msleep.Rd -------------------------------------------------------------------------------- /man/new_guide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/new_guide.Rd -------------------------------------------------------------------------------- /man/old_guide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/old_guide.Rd -------------------------------------------------------------------------------- /man/pattern_alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/pattern_alpha.Rd -------------------------------------------------------------------------------- /man/position_dodge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_dodge.Rd -------------------------------------------------------------------------------- /man/position_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_identity.Rd -------------------------------------------------------------------------------- /man/position_jitter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_jitter.Rd -------------------------------------------------------------------------------- /man/position_jitterdodge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_jitterdodge.Rd -------------------------------------------------------------------------------- /man/position_nudge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_nudge.Rd -------------------------------------------------------------------------------- /man/position_stack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/position_stack.Rd -------------------------------------------------------------------------------- /man/presidential.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/presidential.Rd -------------------------------------------------------------------------------- /man/print.ggplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/print.ggplot.Rd -------------------------------------------------------------------------------- /man/print.ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/print.ggproto.Rd -------------------------------------------------------------------------------- /man/qplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/qplot.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/register_theme_elements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/register_theme_elements.Rd -------------------------------------------------------------------------------- /man/remove_missing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/remove_missing.Rd -------------------------------------------------------------------------------- /man/render_axes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/render_axes.Rd -------------------------------------------------------------------------------- /man/render_strips.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/render_strips.Rd -------------------------------------------------------------------------------- /man/resolution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/resolution.Rd -------------------------------------------------------------------------------- /man/scale_alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_alpha.Rd -------------------------------------------------------------------------------- /man/scale_binned.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_binned.Rd -------------------------------------------------------------------------------- /man/scale_brewer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_brewer.Rd -------------------------------------------------------------------------------- /man/scale_colour_continuous.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_colour_continuous.Rd -------------------------------------------------------------------------------- /man/scale_colour_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_colour_discrete.Rd -------------------------------------------------------------------------------- /man/scale_continuous.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_continuous.Rd -------------------------------------------------------------------------------- /man/scale_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_date.Rd -------------------------------------------------------------------------------- /man/scale_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_discrete.Rd -------------------------------------------------------------------------------- /man/scale_gradient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_gradient.Rd -------------------------------------------------------------------------------- /man/scale_grey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_grey.Rd -------------------------------------------------------------------------------- /man/scale_hue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_hue.Rd -------------------------------------------------------------------------------- /man/scale_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_identity.Rd -------------------------------------------------------------------------------- /man/scale_linetype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_linetype.Rd -------------------------------------------------------------------------------- /man/scale_linewidth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_linewidth.Rd -------------------------------------------------------------------------------- /man/scale_manual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_manual.Rd -------------------------------------------------------------------------------- /man/scale_shape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_shape.Rd -------------------------------------------------------------------------------- /man/scale_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_size.Rd -------------------------------------------------------------------------------- /man/scale_steps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_steps.Rd -------------------------------------------------------------------------------- /man/scale_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_type.Rd -------------------------------------------------------------------------------- /man/scale_viridis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/scale_viridis.Rd -------------------------------------------------------------------------------- /man/seals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/seals.Rd -------------------------------------------------------------------------------- /man/sec_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/sec_axis.Rd -------------------------------------------------------------------------------- /man/set_ggplot2_edition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/set_ggplot2_edition.Rd -------------------------------------------------------------------------------- /man/set_last_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/set_last_plot.Rd -------------------------------------------------------------------------------- /man/sf_transform_xy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/sf_transform_xy.Rd -------------------------------------------------------------------------------- /man/shared_layer_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/shared_layer_parameters.Rd -------------------------------------------------------------------------------- /man/should_stop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/should_stop.Rd -------------------------------------------------------------------------------- /man/standardise_aes_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/standardise_aes_names.Rd -------------------------------------------------------------------------------- /man/stat_connect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_connect.Rd -------------------------------------------------------------------------------- /man/stat_ecdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_ecdf.Rd -------------------------------------------------------------------------------- /man/stat_ellipse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_ellipse.Rd -------------------------------------------------------------------------------- /man/stat_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_identity.Rd -------------------------------------------------------------------------------- /man/stat_manual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_manual.Rd -------------------------------------------------------------------------------- /man/stat_sf_coordinates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_sf_coordinates.Rd -------------------------------------------------------------------------------- /man/stat_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_summary.Rd -------------------------------------------------------------------------------- /man/stat_summary_2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_summary_2d.Rd -------------------------------------------------------------------------------- /man/stat_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/stat_unique.Rd -------------------------------------------------------------------------------- /man/subtheme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/subtheme.Rd -------------------------------------------------------------------------------- /man/summarise_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/summarise_plot.Rd -------------------------------------------------------------------------------- /man/theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/theme.Rd -------------------------------------------------------------------------------- /man/tidyeval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/tidyeval.Rd -------------------------------------------------------------------------------- /man/transform_position.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/transform_position.Rd -------------------------------------------------------------------------------- /man/translate_shape_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/translate_shape_string.Rd -------------------------------------------------------------------------------- /man/txhousing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/txhousing.Rd -------------------------------------------------------------------------------- /man/update_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/update_defaults.Rd -------------------------------------------------------------------------------- /man/update_ggplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/update_ggplot.Rd -------------------------------------------------------------------------------- /man/update_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/update_labels.Rd -------------------------------------------------------------------------------- /man/vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/vars.Rd -------------------------------------------------------------------------------- /man/waiver.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/waiver.Rd -------------------------------------------------------------------------------- /man/wrap_dims.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/wrap_dims.Rd -------------------------------------------------------------------------------- /man/zeroGrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/man/zeroGrob.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | Rplots.pdf 2 | -------------------------------------------------------------------------------- /tests/testthat/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/Rplot001.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes-delayed-eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes-delayed-eval.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes/alpha-set-in-alpha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes/alpha-set-in-alpha.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes/alpha-set-in-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes/alpha-set-in-colour.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes/stat-count-width-0-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes/stat-count-width-0-5.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes/stat-count.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes/stat-count.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/aes/stat-identity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/aes/stat-identity.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/annotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/annotate.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/annotation-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/annotation-custom.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/annotation-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/annotation-map.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/annotation-raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/annotation-raster.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/autolayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/autolayer.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/autoplot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/axis-secondary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/axis-secondary.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/bin.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-cartesian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-cartesian.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-flip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-flip.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-map.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-map/usa-mercator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-map/usa-mercator.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-polar.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-sf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-sf.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-sf/no-breaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-sf/no-breaks.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-sf/no-panel-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-sf/no-panel-grid.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-sf/sf-polygons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-sf/sf-polygons.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord-transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/coord-transform.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/facet-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet-grid-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/facet-grid-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet-labeller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/facet-labeller.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet-wrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/facet-wrap.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/fortify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/fortify.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/function-args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/function-args.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-abline-hline-vline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-abline-hline-vline.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-bar.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-boxplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-boxplot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-boxplot/staples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-boxplot/staples.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-dotplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-dotplot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-dotplot/bin-y-dodged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-dotplot/bin-y-dodged.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-dotplot/stack-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-dotplot/stack-center.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-dotplot/stack-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-dotplot/stack-down.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-dotplot/stack-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-dotplot/stack-up.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-jitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-jitter.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-label.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-linerange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-linerange.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-map.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-path.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-path/lines-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-path/lines-colour.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-path/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-path/lines.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-path/na-linetype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-path/na-linetype.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-point.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/1-x-3-just-0-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/1-x-3-just-0-0.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/1-x-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/1-x-3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/3-x-1-just-0-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/3-x-1-just-0-0.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/3-x-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/3-x-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/3-x-2-just-0-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/3-x-2-just-0-0.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-raster/3-x-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-raster/3-x-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-rect.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-ribbon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-ribbon.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-rug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-rug.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-sf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-sf.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-sf/spatial-points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-sf/spatial-points.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-smooth.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-spoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-spoke.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-text.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin/basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin/basic.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin/coord-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin/coord-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin/coord-polar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin/coord-polar.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin/dodge2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin/dodge2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom-violin/dodging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/geom-violin/dodging.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggproto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/ggproto.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-axis.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis/stacked-axes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-axis/stacked-axes.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-bins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-bins.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-bins/remove-axis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-bins/remove-axis.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-bins/show-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-bins/show-arrows.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-bins/show-limits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-bins/show-limits.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colorbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-colorbar.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colorsteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-colorsteps.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guide-legend.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guides.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guides/legend-on-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guides/legend-on-bottom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guides/legend-on-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guides/legend-on-left.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guides/legend-on-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guides/legend-on-right.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guides/legend-on-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/guides/legend-on-top.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/labels.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/labels/defaults.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/labels/defaults.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/labels/tag-in-margin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/labels/tag-in-margin.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/layer.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/limits.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/make-constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/make-constructor.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/margins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/margins.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/plot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/position-collide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/position-collide.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/position-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/position-dodge.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/prohibited-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/prohibited-functions.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/quick-plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/quick-plot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/save.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/character.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/date.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/functional-limits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/functional-limits.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/no-x-breaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/no-x-breaks.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/no-y-breaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/no-y-breaks.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/numeric-exp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/numeric-exp.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/numeric-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/numeric-log.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/numeric-polar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/numeric-polar.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-/numeric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-/numeric.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-binned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-binned.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-colour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-colour.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-continuous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-continuous.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-date.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-discrete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-discrete.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-expansion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-expansion.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-gradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-gradient.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-hue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-hue.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scale-manual.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/scales.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-align/align-two-areas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-align/align-two-areas.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-bin.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-bin2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-bin2d.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-boxplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-boxplot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-connect.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-contour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-contour.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-count.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-density.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-density2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-density2d.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-ecdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-ecdf.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-function.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-qq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-qq.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat-ydensity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/stat-ydensity.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summarise-plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/summarise-plot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/summary.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme-defaults/theme-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme-defaults/theme-bw.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme-defaults/theme-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme-defaults/theme-dark.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme-defaults/theme-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme-defaults/theme-gray.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme-elements.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme-sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme-sub.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme/axes-styling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme/axes-styling.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme/large-margins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme/large-margins.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme/large-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme/large-spacing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme/strip-styling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme/strip-styling.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/theme/ticks-length.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/theme/ticks-length.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-break.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-checks.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-grid.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-help.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-lifecycle.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-patterns.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities-performance.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/_snaps/utilities.md -------------------------------------------------------------------------------- /tests/testthat/helper-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/helper-density.R -------------------------------------------------------------------------------- /tests/testthat/helper-facet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/helper-facet.R -------------------------------------------------------------------------------- /tests/testthat/helper-plot-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/helper-plot-data.R -------------------------------------------------------------------------------- /tests/testthat/helper-vdiffr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/helper-vdiffr.R -------------------------------------------------------------------------------- /tests/testthat/test-aes-delayed-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-aes-delayed-eval.R -------------------------------------------------------------------------------- /tests/testthat/test-aes-variants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-aes-variants.R -------------------------------------------------------------------------------- /tests/testthat/test-aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-aes.R -------------------------------------------------------------------------------- /tests/testthat/test-annotate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotate.R -------------------------------------------------------------------------------- /tests/testthat/test-annotation-borders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotation-borders.R -------------------------------------------------------------------------------- /tests/testthat/test-annotation-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotation-custom.R -------------------------------------------------------------------------------- /tests/testthat/test-annotation-logticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotation-logticks.R -------------------------------------------------------------------------------- /tests/testthat/test-annotation-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotation-map.R -------------------------------------------------------------------------------- /tests/testthat/test-annotation-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-annotation-raster.R -------------------------------------------------------------------------------- /tests/testthat/test-autolayer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-autolayer.R -------------------------------------------------------------------------------- /tests/testthat/test-autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-autoplot.R -------------------------------------------------------------------------------- /tests/testthat/test-axis-secondary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-axis-secondary.R -------------------------------------------------------------------------------- /tests/testthat/test-bin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-bin.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-cartesian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-cartesian.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-flip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-flip.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-map.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-munch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-munch.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-polar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-polar.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-sf.R -------------------------------------------------------------------------------- /tests/testthat/test-coord-transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-coord-transform.R -------------------------------------------------------------------------------- /tests/testthat/test-facet-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-facet-.R -------------------------------------------------------------------------------- /tests/testthat/test-facet-grid-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-facet-grid-.R -------------------------------------------------------------------------------- /tests/testthat/test-facet-labeller.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-facet-labeller.R -------------------------------------------------------------------------------- /tests/testthat/test-facet-wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-facet-wrap.R -------------------------------------------------------------------------------- /tests/testthat/test-fortify-spatial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-fortify-spatial.R -------------------------------------------------------------------------------- /tests/testthat/test-fortify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-fortify.R -------------------------------------------------------------------------------- /tests/testthat/test-function-args.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-function-args.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-abline-hline-vline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-abline-hline-vline.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-bar.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-boxplot.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-curve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-curve.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-dotplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-dotplot.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-errorbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-errorbar.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-freqpoly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-freqpoly.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-hex.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-jitter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-jitter.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-label.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-linerange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-linerange.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-map.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-path.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-path.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-point.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-polygon.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-quantile.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-raster.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-rect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-rect.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-ribbon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-ribbon.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-rug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-rug.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-sf.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-smooth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-smooth.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-spoke.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-spoke.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-text.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-tile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-tile.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-update-defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-update-defaults.R -------------------------------------------------------------------------------- /tests/testthat/test-geom-violin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-geom-violin.R -------------------------------------------------------------------------------- /tests/testthat/test-ggproto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-ggproto.R -------------------------------------------------------------------------------- /tests/testthat/test-grouping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-grouping.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-axis.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-bins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-bins.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-colorbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-colorbar.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-colorsteps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-colorsteps.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-custom.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-legend.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-none.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-none.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guide-old.R -------------------------------------------------------------------------------- /tests/testthat/test-guides.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-guides.R -------------------------------------------------------------------------------- /tests/testthat/test-labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-labels.R -------------------------------------------------------------------------------- /tests/testthat/test-layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-layer.R -------------------------------------------------------------------------------- /tests/testthat/test-legend-draw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-legend-draw.R -------------------------------------------------------------------------------- /tests/testthat/test-limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-limits.R -------------------------------------------------------------------------------- /tests/testthat/test-make-constructor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-make-constructor.R -------------------------------------------------------------------------------- /tests/testthat/test-margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-margins.R -------------------------------------------------------------------------------- /tests/testthat/test-plot-build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-plot-build.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-plot.R -------------------------------------------------------------------------------- /tests/testthat/test-position-collide.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-collide.R -------------------------------------------------------------------------------- /tests/testthat/test-position-dodge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-dodge.R -------------------------------------------------------------------------------- /tests/testthat/test-position-dodge2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-dodge2.R -------------------------------------------------------------------------------- /tests/testthat/test-position-jitter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-jitter.R -------------------------------------------------------------------------------- /tests/testthat/test-position-jitterdodge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-jitterdodge.R -------------------------------------------------------------------------------- /tests/testthat/test-position-nudge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-nudge.R -------------------------------------------------------------------------------- /tests/testthat/test-position-stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-position-stack.R -------------------------------------------------------------------------------- /tests/testthat/test-prohibited-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-prohibited-functions.R -------------------------------------------------------------------------------- /tests/testthat/test-properties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-properties.R -------------------------------------------------------------------------------- /tests/testthat/test-quick-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-quick-plot.R -------------------------------------------------------------------------------- /tests/testthat/test-save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-save.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-binned.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-binned.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-brewer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-brewer.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-colour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-colour.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-continuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-continuous.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-date.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-discrete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-discrete.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-expansion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-expansion.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-gradient.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-gradient.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-hue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-hue.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-identity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-identity.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-manual.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-type.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-view.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-viridis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scale-viridis.R -------------------------------------------------------------------------------- /tests/testthat/test-scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-scales.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-align.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-align.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-bin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-bin.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-bin2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-bin2d.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-boxplot.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-connect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-connect.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-contour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-contour.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-count.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-density.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-density2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-density2d.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-ecdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-ecdf.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-ellipsis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-ellipsis.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-function.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-hex.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-manual.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-qq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-qq.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-sf-coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-sf-coordinates.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-sum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-sum.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-summary.R -------------------------------------------------------------------------------- /tests/testthat/test-stat-ydensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-stat-ydensity.R -------------------------------------------------------------------------------- /tests/testthat/test-summarise-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-summarise-plot.R -------------------------------------------------------------------------------- /tests/testthat/test-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-summary.R -------------------------------------------------------------------------------- /tests/testthat/test-theme-current.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-theme-current.R -------------------------------------------------------------------------------- /tests/testthat/test-theme-defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-theme-defaults.R -------------------------------------------------------------------------------- /tests/testthat/test-theme-elements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-theme-elements.R -------------------------------------------------------------------------------- /tests/testthat/test-theme-sub.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-theme-sub.R -------------------------------------------------------------------------------- /tests/testthat/test-theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-theme.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-break.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-break.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-checks.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-grid.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-help.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-lifecycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-lifecycle.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-patterns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-patterns.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-performance.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities-resolution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities-resolution.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-utilities.R -------------------------------------------------------------------------------- /tests/testthat/test-zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/tests/testthat/test-zzz.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/.gitignore -------------------------------------------------------------------------------- /vignettes/articles/faq-annotation.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-annotation.qmd -------------------------------------------------------------------------------- /vignettes/articles/faq-axes.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-axes.qmd -------------------------------------------------------------------------------- /vignettes/articles/faq-bars.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-bars.qmd -------------------------------------------------------------------------------- /vignettes/articles/faq-customising.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-customising.qmd -------------------------------------------------------------------------------- /vignettes/articles/faq-faceting.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-faceting.qmd -------------------------------------------------------------------------------- /vignettes/articles/faq-reordering.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/articles/faq-reordering.qmd -------------------------------------------------------------------------------- /vignettes/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/car.png -------------------------------------------------------------------------------- /vignettes/extending-ggplot2.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/extending-ggplot2.qmd -------------------------------------------------------------------------------- /vignettes/ggplot2-in-packages.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/ggplot2-in-packages.qmd -------------------------------------------------------------------------------- /vignettes/ggplot2-specs.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/ggplot2-specs.qmd -------------------------------------------------------------------------------- /vignettes/ggplot2.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/ggplot2.qmd -------------------------------------------------------------------------------- /vignettes/profiling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/profiling.qmd -------------------------------------------------------------------------------- /vignettes/profilings/3.1.0.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidyverse/ggplot2/HEAD/vignettes/profilings/3.1.0.rds --------------------------------------------------------------------------------