title: A character string or expression indicating a title of guide. If NULL, the title is not shown. By default (waiver()), the name of the scale object or the name specified in labs() is used for the title.
draw.ulim: A logical specifying if the upper limit tick marks should be visible.
draw.llim: A logical specifying if the lower limit tick marks should be visible.
inside: logical indicating where to position labels (see examples).
direction: A character string indicating the direction of the guide. One of "horizontal" or "vertical."
reverse: logical. If TRUE the colourbar is reversed. By default, the highest value is on the top and the lowest value is on the bottom
order: positive integer less than 99 that specifies the order of this guide among multiple guides. This controls the order in which multiple guides are displayed, not the contents of the guide itself. If 0 (default), the order is determined by a secret algorithm.
available_aes: A vector of character strings listing the aesthetics for which a colourbar can be drawn.
...: ignored.
theme: A theme object to style the guide individually or differently from the plot's theme settings. The theme argument in the guide overrides, and is combined with, the plot's theme.
Returns
A guide object.
Details
The default behaviour works fell for geom_contour_fill in which the colours represent the value between contour surfaces.
`inside = TRUE`` works better for geom_tile where the colour represents the value of the data and is very similar to ggplot2::guide_legend .
Examples
# In this example the lowest colour represents an area of the data with values# between 80 and 100.library(ggplot2)binwidth <-20data(volcano)ggplot(reshape2::melt(volcano), aes(Var1, Var2, z = value))+ geom_contour_fill(binwidth = binwidth)+ scale_fill_continuous(guide = guide_colourstrip(), breaks = MakeBreaks(binwidth))# Difference between guide_legend() and guide_colorbar2(inside = T)df <- reshape2::melt(outer(1:4,1:4), varnames = c("X1","X2"))g <- ggplot(df, aes(X1, X2))+ geom_tile(aes(fill = value))+ theme(legend.position ="bottom")# Tick labels are to the sideg + scale_fill_continuous(guide = guide_legend())# Tick labels are at the bottomg + scale_fill_continuous(guide = guide_colourstrip(inside =TRUE))