f_date: Format Dates

Description Usage Arguments Value Examples

View source: R/f_date.R

Description

Format dates to the typical '

Usage

1
2
3
f_date(x = Sys.Date(), format = "%B %d, %Y", ...)

ff_date(...)

Arguments

x

A vector of coercible dates.

format

A character string specifying the date output format.

...

Other arguments passed to as.Date.

Value

Returns a string of publication ready dates.

Examples

1
2
3
4
5
6
f_date(Sys.Date())
f_date(Sys.time())
f_date(Sys.time(), '%b-%y')
set.seed(10)
dates <- as.Date(sample(1:10000, 12), origin = '1970-01-01')
paste(f_date(range(dates)), collapse = ' to ')

numform documentation built on Oct. 10, 2021, 1:10 a.m.