Releases: tidyverse/ggplot2
ggplot2 2.2.1
- Fix usage of
structure(NULL)
for R-devel compatibility (#1968).
ggplot2 2.2.0
Major new features
Subtitle and caption
Thanks to @hrbrmstr plots now have subtitles and captions, which can be set with the subtitle
and caption
arguments to ggtitle()
and labs()
. You can control their appearance with the theme settings plot.caption
and plot.subtitle
. The main plot title is now left-aligned to better work better with a subtitle. The caption is right-aligned (@hrbrmstr).
Stacking
position_stack()
and position_fill()
now sort the stacking order to match grouping order. This allows you to control the order through grouping, and ensures that the default legend matches the plot (#1552, #1593). If you want the opposite order (useful if you have horizontal bars and horizontal legend), you can request reverse stacking by using position = position_stack(reverse = TRUE)
(#1837).
position_stack()
and position_fill()
now accepts negative values which will create stacks extending below the x-axis (#1691).
position_stack()
and position_fill()
gain a vjust
argument which makes it easy to (e.g.) display labels in the middle of stacked bars (#1821).
Layers
geom_col()
was added to complement geom_bar()
(@hrbrmstr). It uses stat="identity"
by default, making the y
aesthetic mandatory. It does not support any other stat_()
and does not provide fallback support for the binwidth
parameter. Examples and references in other functions were updated to demonstrate geom_col()
usage.
When creating a layer, ggplot2 will warn if you use an unknown aesthetic or an unknown parameter. Compared to the previous version, this is stricter for aesthetics (previously there was no message), and less strict for parameters (previously this threw an error) (#1585).
Facetting
The facet system, as well as the internal panel class, has been rewritten in ggproto. Facets are now extendable in the same manner as geoms and stats, as described in vignette("extending-ggplot2")
.
We have also added the following new fatures.
facet_grid()
andfacet_wrap()
now allow expressions in their facetting
formulas (@DanRuderman, #1596).- When
facet_wrap()
results in an uneven number of panels, axes will now be
drawn underneath the hanging panels (fixes #1607) - Strips can now be freely positioned in
facet_wrap()
using the
strip.position
argument (deprecatesswitch
). - The relative order of panel, strip, and axis can now be controlled with
the theme settingstrip.placement
that takes eitherinside
(strip between
panel and axis) oroutside
(strip after axis). - The theme option
panel.margin
has been deprecated in favour of
panel.spacing
to more clearly communicate intent.
Extensions
Unfortunately there was a major oversight in the construction of ggproto which lead to extensions capturing the super object at package build time, instead of at package run time (#1826). This problem has been fixed, but requires re-installation of all extension packages.
Scales
- The position of x and y axes can now be changed using the
position
argument
inscale_x_*
andscale_y_*
which can taketop
andbottom
, andleft
andright
respectively. The themes of top and right axes can be modified
using the.top
and.right
modifiers toaxis.text.*
andaxis.title.*
.
Continuous scales
scale_x_continuous()
andscale_y_continuous()
can now display a secondary
axis that is a one-to-one transformation of the primary axis (e.g. degrees
Celcius to degrees Fahrenheit). The secondary axis will be positioned opposite
to the primary axis and can be controlled with thesec.axis
argument to
the scale constructor.- Scales worry less about having breaks. If no breaks can be computed, the
plot will work instead of throwing an uninformative error (#791). This
is particularly helpful when you have facets with free scales, and not
all panels contain data. - Scales now warn when transformation introduces infinite values (#1696).
Date time
scale_*_datetime()
now supports time zones. It will use the timezone
attached to the varaible by default, but can be overridden with the
timezone
argument.- New
scale_x_time()
andscale_y_time()
generate reasonable default
breaks and labels for hms vectors (#1752).
Discrete scales
The treatment of missing values by discrete scales has been thoroughly overhauled (#1584). The underlying principle is that we can naturally represent missing values on discrete variables (by treating just like another level), so by default we should.
This principle applies to:
- character vectors
- factors with implicit NA
- factors with explicit NA
And to all scales (both position and non-position.)
Compared to the previous version of ggplot2, there are three main changes:
scale_x_discrete()
andscale_y_discrete()
always show discrete NA,
regardless of their source- If present,
NA
s are shown in discete legends. - All discrete scales gain a
na.translate
argument that allows you to
control whetherNA
s are translated to something that can be visualised,
or should be left as missing. Note that if you don't translate (i.e.
na.translate = FALSE)
the missing values will passed on to the layer,
which will warning that it's dropping missing values. To suppress the
warnings, you'll also need to addna.rm = TRUE
to the layer call.
There were also a number of other smaller changes
- Correctly use scale expansion factors.
- Don't preserve space for dropped levels (#1638).
- Only issue one warning when when asking for too many levels (#1674).
- Unicode labels work better on Windows (#1827).
- Warn when used with only continuous data (#1589)
Themes
- The
theme()
constructor now has named arguments rather than ellipses. This
should make autocomplete substantially more useful. The documentation
(including exampes) has been considerably improved. - Built-in themes are more visually homogeneous, and match
theme_grey
better.
(@jiho, #1679) - When computing the height of titles, ggplot2 now includes the height of the
descenders (i.e. the bits ofg
andy
that hang beneath the baseline). This
improves the margins around titles, particularly the y axis label (#1712).
I have also very slightly increased the inner margins of axis titles, and
removed the outer margins. - Theme element inheritance is now easier to work with as modification now
overrides defaultelement_blank
elements (#1555, #1557, #1565, #1567) - Horizontal legends (i.e. legends on the top or bottom) are horizontally
aligned by default (#1842). Uselegend.box = "vertical"
to switch back
to the previous behaviour. element_line()
now takes anarrow
argument to specify arrows at the end of
lines (#1740)
There were a number of tweaks to the theme elements that control legends:
legend.justification
now controls appearance will plotting the legend
outside of the plot area. For example, you can use
theme(legend.justification = "top")
to make the legend align with the
top of the plot.panel.margin
andlegend.margin
have been renamed topanel.spacing
and
legend.spacing
respectively, to better communicate intent (they only
affect spacing between legends and panels, not the margins around them)legend.margin
now controls margin around individual legends.- New
legend.box.background
,legend.box.spacing
, andlegend.box.margin
control the background, spacing, and margin of the legend box (the region
that contains all legends).
Bug fixes and minor improvements
- ggplot2 now imports tibble. This ensures that all built-in datasets print
compactly even if you haven't explicitly loaded tibble or dplyr (#1677). - Class of aesthetic mapping is preserved when adding
aes()
objects (#1624). +.gg
now works for lists that include data frames.annotation_x()
now works in the absense of global data (#1655)geom_*(show.legend = FALSE)
now works forguide_colorbar
.geom_boxplot()
gains newoutlier.alpha
(@jonathan-g) and
outlier.fill
(@schloerke, #1787) parameters to control the alpha/fill of
outlier points independently of the alpha of the boxes.position_jitter()
(and hencegeom_jitter()
) now correctly computes
the jitter width/jitter when supplied by the user (#1775, @has2k1).geom_contour()
more clearly describes what inputs it needs (#1577).geom_curve()
respects thelineend
paramater (#1852).geom_histogram()
andstat_bin()
understand thebreaks
parameter once
more. (#1665). The floating point adjustment for histogram bins is now
actually used - it was previously inadvertently ignored (#1651).geom_violin()
no longer transforms quantile lines with the alpha aesthetic
(@mnbram, #1714). It no longer errors when quantiles are requested but data
have zero range (#1687). Whentrim = FALSE
it once again has a nice
range that allows the density to reach zero (by extending the range 3
bandwidths to either side of the data) (#1700).geom_dotplot()
works better when facetting and binning on the y-axis.
(#1618, @has2k1).geom_hexbin()
once again supports..density..
(@mikebirdgeneau, #1688).geom_step()
gives useful warning if only one data point in layer (#1645).layer()
gains newcheck.aes
andcheck.param
arguments. These allow
geom/stat authors to optional suppress checks for known aesthetics/parameters.
Currently this is used only ingeom_blank()
which powersexpand_limits()
(#1795).- All
stat_*()
display a better error message when required aesthetics are
missing. stat_bin()
andstat_summary_hex()
now accept length 1binwidth
(#1610)stat_density()
gains new argumentn
, which is passed to underlying function
stats::density
("number of equally spaced points at which the
density is to be estimated"). (@hbuschme)stat_binhex()
now again returnscount
rather thanvalue
(#...
ggplot2 2.1.0
New features
- When mapping an aesthetic to a constant (e.g.
geom_smooth(aes(colour = "loess")))
), the default guide title is the name
of the aesthetic (i.e. "colour"), not the value (i.e. "loess") (#1431). layer()
now accepts a function as the data argument. The function will be
applied to the data passed to theggplot()
function and must return a
data.frame (#1527, @thomasp85). This is a more general version of the
deprecatedsubset
argument.theme_update()
now uses the+
operator instead of%+replace%
, so that
unspecified values will no longer beNULL
ed out.theme_replace()
preserves the old behaviour if desired (@oneillkza, #1519).stat_bin()
has been overhauled to use the same algorithm as ggvis, which
has been considerably improved thanks to the advice of Randy Prium (@rpruim).
This includes:- Better arguments and a better algorithm for determining the origin.
You can now specify eitherboundary
or thecenter
of a bin.
origin
has been deprecated in favour of these arguments. drop
is deprecated in favour ofpad
, which adds extra 0-count bins
at either end (needed for frequency polygons).geom_histogram()
defaults
topad = FALSE
which considerably improves the default limits for
the histogram, especially when the bins are big (#1477).- The default algorithm does a (somewhat) better job at picking nice widths
and origins across a wider range of input data. bins = n
now gives a histogram withn
bins, notn + 1
(#1487).
- Better arguments and a better algorithm for determining the origin.
Bug fixes
- All
\donttest{}
examples run. - All
geom_()
andstat_()
functions now have consistent argument order:
data + mapping, then geom/stat/position, then...
, then specific arguments,
then arguments common to all layers (#1305). This may break code if you were
previously relying on partial name matching, but in the long-term should make
ggplot2 easier to use. In particular, you can now set then
parameter
ingeom_density2d()
without it partially matchingna.rm
(#1485). - For geoms with both
colour
andfill
,alpha
once again only affects
fill (Reverts #1371, #1523). This was causing problems for people. facet_wrap()
/facet_grid()
works with multiple empty panels of data
(#1445).facet_wrap()
correctly swapsnrow
andncol
when facetting vertically
(#1417).ggsave("x.svg")
now uses svglite to produce the svg (#1432).geom_boxplot()
now understandsoutlier.color
(#1455).geom_path()
knows that "solid" (not just 1) represents a solid line (#1534).geom_ribbon()
preserves missing values so they correctly generate a
gap in the ribbon (#1549).geom_tile()
once again acceptswidth
andheight
parameters (#1513).
It usesdraw_key_polygon()
for better a legend, including a coloured
outline (#1484).layer()
now automatically adds ana.rm
parameter if none is explicitly
supplied.position_jitterdodge()
now works on all possible dodge aesthetics,
e.g.color
,linetype
etc. instead of only based onfill
(@bleutner)position = "nudge"
now works (although it doesn't do anything useful)
(#1428).- The default scale for columns of class "AsIs" is now "identity" (#1518).
scale_*_discrete()
has better defaults when used with purely continuous
data (#1542).scale_size()
warns when used with categorical data.scale_size()
,scale_colour()
, andscale_fill()
gain date and date-time
variants (#1526).stat_bin_hex()
andstat_bin_summary()
now use the same underlying
algorithm so results are consistent (#1383).stat_bin_hex()
now accepts
aweight
aesthetic. To be consistent with related stats, the output variable
fromstat_bin_hex()
is now value instead of count.stat_density()
gains abw
parameter which makes it easy to get consistent
smoothing between facets (@jiho)stat-density-2d()
no longer ignores theh
parameter, and now accepts
bins
andbinwidth
parameters to control the number of contours
(#1448, @has2k1).stat_ecdf()
does a better job of adding padding to -Inf/Inf, and gains
an argumentpad
to suppress the padding if not needed (#1467).stat_function()
gains anxlim
parameter (#1528). It once again works
with discrete x values (#1509).stat_summary()
preserves sorted x order which avoids artefacts when
display results withgeom_smooth()
(#1520).- All elements should now inherit correctly for all themes except
theme_void()
.
(@Katiedaisey, #1555) theme_void()
was completely void of text but facets and legends still
need labels. They are now visible (@jiho).- You can once again set legend key and height width to unit arithmetic
objects (like2 * unit(1, "cm")
) (#1437). - Eliminate spurious warning if you have a layer with no data and no aesthetics
(#1451). - Removed a superfluous comma in
theme-defaults.r
code (@jschoeley) - Fixed a compatibility issue with
ggproto
and R versions prior to 3.1.2.
(#1444)
ggplot2 2.0.0
Major changes
-
ggplot no longer throws an error if you your plot has no layers. Instead it
automatically addsgeom_blank()
(#1246). -
New
cut_width()
is a convenient replacement for the verbose
plyr::round_any()
, with the additional benefit of offering finer
control. -
New
geom_count()
is a convenient alias tostat_sum()
. Use it when you
have overlapping points on a scatterplot.stat_sum()
now defaults to
using counts instead of proportions. -
New
geom_curve()
adds curved lines, with a similar specification to
geom_segment()
(@veraanadi, #1088). -
Date and datetime scales now have
date_breaks
,date_minor_breaks
and
date_labels
arguments so that you never need to use the long
scales::date_breaks()
orscales::date_format()
. -
geom_bar()
now has it's own stat, distinct fromstat_bin()
which was
also used bygeom_histogram()
.geom_bar()
now usesstat_count()
which counts values at each distinct value of x (i.e. it does not bin
the data first). This can be useful when you want to show exactly which
values are used in a continuous variable. -
geom_point()
gains astroke
aesthetic which controls the border width of
shapes 21-25 (#1133, @SeySayux).size
andstroke
are additive so a point
withsize = 5
andstroke = 5
will have a diameter of 10mm. (#1142) -
New
position_nudge()
allows you to slightly offset labels (or other
geoms) from their corresponding points (#1109). -
scale_size()
now maps values to area, not radius. Usescale_radius()
if you want the old behaviour (not recommended, except perhaps for lines). -
New
stat_summary_bin()
works likestat_summary()
but on binned data.
It's a generalisation ofstat_bin()
that can compute any aggregate,
not just counts (#1274). Both default tomean_se()
if no aggregation
functions are supplied (#1386). -
Layers are now much stricter about their arguments - you will get an error
if you've supplied an argument that isn't an aesthetic or a parameter.
This is likely to cause some short-term pain but in the long-term it will make
it much easier to spot spelling mistakes and other errors (#1293).This change does break a handful of geoms/stats that used
...
to pass
additional arguments on to the underlying computation. Now
geom_smooth()
/stat_smooth()
andgeom_quantile()
/stat_quantile()
usemethod.args
instead (#1245, #1289); andstat_summary()
(#1242),
stat_summary_hex()
, andstat_summary2d()
usefun.args
.
Extensibility
There is now an official mechanism for defining Stats, Geoms, and Positions in other packages. See vignette("extending-ggplot2")
for details.
- All Geoms, Stats and Positions are now exported, so you can inherit from them
when making your own objects (#989). - ggplot2 no longer uses proto or reference classes. Instead, we now use
ggproto, a new OO system designed specifically for ggplot2. Unlike proto
and RC, ggproto supports clean cross-package inheritance. Creating a new OO
system isn't usually the right way to solve a problem, but I'm pretty sure
it was necessary here. Read more about it in the vignette. aes_()
replacesaes_q()
. It also supports formulas, so the most concise
SE version ofaes(carat, price)
is nowaes_(~carat, ~price)
. You may
want to use this form in packages, as it will avoid spuriousR CMD check
warnings about undefined global variables.
Text
geom_text()
has been overhauled to make labelling your data a little
easier. It:nudge_x
andnudge_y
arguments let you offset labels from their
corresponding points (#1120).check_overlap = TRUE
provides a simple way to avoid overplotting
of labels: labels that would otherwise overlap are omitted (#1039).hjust
andvjust
can now be character vectors: "left", "center",
"right", "bottom", "middle", "top". New options include "inward" and
"outward" which align text towards and away from the center of the plot
respectively.
geom_label()
works likegeom_text()
but draws a rounded rectangle
underneath each label (#1039). This is useful when you want to label plots
that are dense with data.
Deprecated features
- The little used
aes_auto()
has been deprecated. aes_q()
has been replaced withaes_()
to be consistent with SE versions
of NSE functions in other packages.- The
order
aesthetic is officially deprecated. It never really worked, and
was poorly documented. - The
stat
andposition
arguments toqplot()
have been deprecated.
qplot()
is designed for quick plots - if you need to specify position
or stat, useggplot()
instead. - The theme setting
axis.ticks.margin
has been deprecated: now use the margin
property ofaxis.ticks
. stat_abline()
,stat_hline()
andstat_vline()
have been removed:
these were never suitable for use other than withgeom_abline()
etc
and were not documented.show_guide
has been renamed toshow.legend
: this more accurately
reflects what it does (controls appearance of layer in legend), and uses the
same convention as other ggplot2 arguments (i.e. a.
between names).
(Yes, I know that's inconsistent with function names with use_
, but it's
too late to change now.)
A number of geoms have been renamed to be internally consistent:
stat_binhex()
andstat_bin2d()
have been renamed tostat_bin_hex()
andstat_bin_2d()
(#1274).stat_summary2d()
has been renamed to
stat_summary_2d()
,geom_density2d()
/stat_density2d()
has been renamed
togeom_density_2d()
/stat_density_2d()
.stat_spoke()
is nowgeom_spoke()
since I realised it's a
reparameterisation of `geom_segment().stat_bindot()
has been removed because it's so tightly coupled to
geom_dotplot()
. If you happened to usestat_bindot()
, just change to
geom_dotplot()
(#1194).
All defunct functions have been removed.
Default appearance
-
The default
theme_grey()
background colour has been changed from "grey90"
to "grey92": this makes the background a little less visually prominent. -
Labels and titles have been tweaked for readability:
- Axes labels are darker.
- Legend and axis titles are given the same visual treatment.
- The default font size dropped from 12 to 11. You might be surprised that
I've made the default text size smaller as it was already hard for
many people to read. It turns out there was a bug in RStudio (fixed in
0.99.724), that shrunk the text of all grid based graphics. Once that
was resolved the defaults seemed too big to my eyes. - More spacing between titles and borders.
- Default margins scale with the theme font size, so the appearance at
larger font sizes should be considerably improved (#1228).
-
alpha
now affects both fill and colour aesthetics (#1371). -
element_text()
gains a margins argument which allows you to add additional
padding around text elements. To help see what's going on usedebug = TRUE
to display the text region and anchors. -
The default font size in
geom_text()
has been decreased from 5mm (14 pts)
to 3.8 mm (11 pts) to match the new default theme sizes. -
A diagonal line is no longer drawn on bar and rectangle legends. Instead, the
border has been tweaked to be more visible, and more closely match the size of
line drawn on the plot. -
geom_pointrange()
andgeom_linerange()
get vertical (not horizontal)
lines in the legend (#1389). -
The default line
size
forgeom_smooth()
has been increased from 0.5 to 1
to make it easier to see when overlaid on data. -
geom_bar()
andgeom_rect()
use a slightly paler shade of grey so they
aren't so visually heavy. -
geom_boxplot()
now colours outliers the same way as the boxes. -
geom_point()
now uses shape 19 instead of 16. This looks much better on
the default Linux graphics device. (It's very slightly smaller than the old
point, but it shouldn't affect any graphics significantly) -
Sizes in ggplot2 are measured in mm. Previously they were converted to pts
(for use in grid) by multiplying by 72 / 25.4. However, grid uses printer's
points, not Adobe (big pts), so sizes are now correctly multiplied by
72.27 / 25.4. This is unlikely to noticeably affect display, but it's
technically correct (https://youtu.be/hou0lU8WMgo). -
The default legend will now allocate multiple rows (if vertical) or
columns (if horizontal) in order to make a legend that is more likely to
fit on the screen. You can override with thenrow
/ncol
arguments
toguide_legend()
p <- ggplot(mpg, aes(displ,hwy, colour = model)) + geom_point() p p + theme(legend.position = "bottom") # Previous behaviour p + guides(colour = guide_legend(ncol = 1))
New and updated themes
- New
theme_void()
is completely empty. It's useful for plots with non-
standard coordinates or for drawings (@jiho, #976). - New
theme_dark()
has a dark background designed to make colours pop out
(@jiho, #1018) theme_minimal()
became slightly more minimal by removing the axis ticks:
labels now line up directly beneath grid lines (@tomschloss, #1084)- New theme setting
panel.ontop
(logical) make it possible to place
background elements (i.e., gridlines) on top of data. Best used with
transparentpanel.background
(@noamross. #551).
Labelling
The facet labelling system was updated with many new features and a
more flexible interface (@lionel-). It now works consistently across
grid and wrap facets. The most important user visible changes are:
facet_wrap()
gains alabeller
option (#25).facet_grid()
andfacet_wrap()
gain aswitch
argument to
display the facet titles near the axes. When switched, the labels
become axes subtitles.switch
can be set to "x", "y" or "both"
(the latter only for grids) to control which margin is switched.
The la...
ggplot2 1.0.1
- Fixes to pass
R CMD check --run-donttest
in R-devel.
ggplot2 1.0.0
New features
- New coordinate system for small scale maps.
coord_quickmap()
computes and
sets the correct aspect ratio between one degree of latitude and one degree
of longitude at the centre of the plotted region. It does not perform full
fledged mapping projection ascoord_map()
does and therefore is much
faster. Yet, it gives a correct approximation for small scale maps (a few
degrees in either direction) at medium to low latitudes (@jiho, #922). geom_boxplot
gain newvarwidth
argument for controlling whether or not
the width of boxplots should be proportional to the size of the groups
(@tsieger, #927).position_jitterdodge()
combinesposition_jitter()
andposition_dodge()
,
allowing the user to plot and align points generated by e.g.geom_point()
with those generated by a dodgedgeom_boxplot()
. See
example(position_jitterdodge)
for a potential usage. (@kevinushey, #932)- Allow specifying only one of the limits in a scale and use the automatic
calculation of the other limit by passing NA to to the limit function,
xlim()
orylim()
(@jimhester, #557). - Allow to use brewer palettes for continuous scales, through the new
scale_fill/colour_distiller()
functions (@jiho, #925). stat_ellipse()
adds data ellipses. It supports bivariate normal and t distributions,
as well as a euclidian distance circle. (@JoFrhwld, #926)- Add new themes:
theme_linedraw()
is similar totheme_bw()
but with
truly only white and black elements and spacing between elements identical
totheme_gray
.theme_light
is similar but with light gray box and axes
around the plot, to emphasise content more (@jiho, #923) - new theme settings panel.margin.x and panel.margin.y (units) allow
specifying horizontal and vertical gap between panels in facetted plots (for
both grid and wrap). (Kirill Müller. Fixes #839) - Fix vertical justification for rotated text. This will change the appearance
of plots that use textual elements that are rotated by 90° or 270° and have a
vjust
parameter other than the default 0.5; the interpretation ofvjust
andhjust
is now the same for both rotated and non-rotated text elements
(0 = top/left, 1 = bottom/right, 0.5 = centered). (@krlmlr, #883) - Added helper function
labeller()
for formatting faceting values.
(@stefanedwards, #910). Addedlabel_wrap_gen
based on
https://github.com/hadley/ggplot2/wiki/labeller#writing-new-labellers
(@stefanedwards, #910)
Bug fixes and minor improvements
aes()
no more treats variables like `a..x..b as a calculated aesthetic.
(@krlmlr, #834.)- New
aes_q()
function to generate aesthetic specifications from
quoted calls/names.aes_string()
uses namesx
andy
for first
two unnamed arguments. fortify.SpatialPolygonsDataFrame()
now callspolygons
without
requiring thesp
to be loaded first (@seancarmody, #879).- The outliers of
geom_boxplot()
use the default colour, size and shape from
geom_point()
. Changing the defaults ofgeom_point()
with
update_geom_defaults()
will apply the same changes to the outliers of
geom_boxplot()
. Changing the defaults for the outliers was previously not
possible. (@ThierryO, #757) geom_dotplot()
now works withqplot()
. (@rasmusab. Fixes #825)- Marginal improvements to
theme_bw()
andtheme_classic()
(@jiho, #934) stat_smooth()
checks formethod = "auto"
andmethod = "glm"
in
a safer way.- Add
"none"
to documentation oftheme()
for parameterlegend.position
(@krlmlr, #829).
Removed functionality
ggpcp()
,ggfluctuation()
,ggmissing()
,ggstructure()
, and
ggorder()
are now defunct and have been removed.