geom_subfig: Geom Subplot

Description Usage Arguments Value

View source: R/subfig.R

Description

Plot subplot elements in a plot.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
geom_subfig(
  mapping = NULL,
  stat = StatIdentity,
  position = PositionIdentity,
  data = NULL,
  ...,
  nudge_x = 0,
  nudge_y = 0,
  theme = NULL,
  na.rm = FALSE,
  inherit.aes = TRUE
)

Arguments

mapping

requires aesthetics x, y, width, height, plot.

stat

The statistical transformation to use on the data for this layer, as a string.

position

Position adjustment, either as a string, or the result of a call to a position adjustment function.

data

The data to be displayed in this layer. There are three options:

If NULL, the default, the data is inherited from the plot data as specified in the call to ggplot().

A data.frame, or other object, will override the plot data. All objects will be fortified to produce a data frame. See fortify() for which variables will be created.

A function will be called with a single argument, the plot data. The return value must be a data.frame, and will be used as the layer data. A function can be created from a formula (e.g. ~ head(.x, 10)).

...

Other arguments passed on to layer(). These are often aesthetics, used to set an aesthetic to a fixed value, like colour = "red" or size = 3. They may also be parameters to the paired geom/stat.

nudge_x, nudge_y

Horizontal and vertical adjustment to nudge subplots by. Useful for offsetting plots from their center coordinates, particularly on discrete scales.

na.rm

If FALSE, the default, missing values are removed with a warning. If TRUE, missing values are silently removed.

inherit.aes

If FALSE, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g. borders().

Value

a ggplot2 layer.


mkoohafkan/ggsubplot2 documentation built on May 8, 2020, 1:09 a.m.