fx_default_fxGeom_limits: Effex Functions: Default of 'fxGeom_limits'

Description Usage Arguments Mechanism Examples

Description

fxGeom_limits specifies the limits of the scale of fx_ggplot().

Usage

1
2
fx_default_fxGeom_limits(data, mf = metaframe(fx_default(data)),
  custom_fun = default_identity)

Arguments

data

A data frame

mf

The metaframe. The metaframe of data is set as default.

custom_fun

A function which accepts the determined class and the name and returns the corrected class. Default is the identity.

Mechanism

Examples

1
2
3
4
5
6
7
df <- dplyr::tibble(
  num = c(1:3, 1:3),
  char = LETTERS[c(1:3, 1:3)],
  fac = factor(LETTERS[c(1:3, 1:3)], levels = LETTERS[1:4]),
  lst = as.list(c(1:3, 1:3))
)
fx_default_fxGeom_limits(df)

sflippl/tectr documentation built on May 6, 2019, 8:51 a.m.