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.NULLfor no breakswaiver()for the default breaks computed by the
transformation objectNULLfor no minor breakswaiver()for the default breaks (one minor break between
each major break)NULLfor no labelswaiver()for the default labels computed by the
transformation objectbreaks)c(0.05, 0) for continuous variables, and c(0, 0.6)<