Skip to contents

Specify text format via a sprintf format string

Usage

sprintf_format(format)

Arguments

format

character(1). A format string passed to sprintf.

Value

A formatting function which wraps and will apply the specified printf style format string format.

See also

Examples


fmtfun <- sprintf_format("(N=%i")
format_value(100, format = fmtfun)
#> [1] "(N=100"

fmtfun2 <- sprintf_format("%.4f - %.2f")
format_value(list(12.23456, 2.724))
#> [1] "12.23456, 2.724"