A percentage value acts as a length value that is relative to an initial
state. For instance an 80 percent value for something will size the target
to 80 percent the size of its 'previous' value. This type of sizing is
useful for sizing up or down a length value with an intuitive measure. This
helper function can be used for the setting of font sizes (e.g., in
cell_text()
) and altering the thicknesses of lines (e.g., in
cell_borders()
). Should a more exact definition of size be required, the
analogous helper function pct()
will be more useful.
Arguments
- x
Numeric value in percent
scalar<numeric|integer>
// requiredThe numeric value to format as a string percentage for some
tab_options()
arguments that can take percentage values (e.g.,table.width
).
Examples
Use the exibble
dataset to create a gt table. Inside of the
cell_text()
call (which is itself inside of tab_style()
), we'll use the
pct()
helper function to define the font size for the column labels as a
percentage value.
exibble |>
gt() |>
tab_style(
style = cell_text(size = pct(75)),
locations = cells_column_labels()
)
See also
Other helper functions:
adjust_luminance()
,
cell_borders()
,
cell_fill()
,
cell_text()
,
currency()
,
default_fonts()
,
escape_latex()
,
from_column()
,
google_font()
,
gt_latex_dependencies()
,
html()
,
md()
,
nanoplot_options()
,
px()
,
random_id()
,
row_group()
,
stub()
,
system_fonts()
,
unit_conversion()