Learn R Programming

formattable (version 0.2.0.1)

formattable.Date: Create a formattable Date vector

Description

Create a formattable Date vector

Usage

# S3 method for Date
formattable(x, ..., formatter = "format.Date",
  preproc = NULL, postproc = NULL)

Arguments

x

a vector of class Date.

...

arguments to be passed to formatter.

formatter

formatting function, format.Date in default.

preproc

pre-processor function that prepares x for formatting function.

postproc

post-processor function that transforms formatted output for printing.

Value

a formattable Date vector

Examples

Run this code
# NOT RUN {
dates <- as.Date("2015-04-10") + 1:5
fdates <- formattable(dates, format = "%m/%d/%Y")
fdates
fdates + 30
# }

Run the code above in your browser using DataLab