scale_T_continuous(name = waiver(), limits = c(0, 1),
breaks = getBreaks(limits, TRUE), minor_breaks = getBreaks(limits, FALSE),
labels = 100 * breaks, expand = waiver(), ...)scale_L_continuous(name = waiver(), limits = c(0, 1),
breaks = getBreaks(limits, TRUE), minor_breaks = getBreaks(limits, FALSE),
labels = 100 * breaks, expand = waiver(), ...)
scale_R_continuous(name = waiver(), limits = c(0, 1),
breaks = getBreaks(limits, TRUE), minor_breaks = getBreaks(limits, FALSE),
labels = 100 * breaks, expand = waiver(), ...)
NULL
, the default, the name of the scale is taken from the first
mapping used for that aesthetic.NA
to refer to the existing minimum or maximum.NULL
for no breakswaiver()
for the default breaks computed by the
transformation objectNULL
for no minor breakswaiver()
for the default breaks (one minor break between
each major break)NULL
for no labelswaiver()
for the default labels computed by the
transformation objectbreaks
)c(0.05, 0)
for continuous variables, and c(0, 0.6)<