Learn R Programming

wrapr (version 1.4.0)

draw_frame: Render a data.frame in build_frame format.

Description

Render a data.frame in build_frame format.

Usage

draw_frame(x, ..., time_format = "%Y-%m-%d %H:%M:%S",
  formatC_options = list())

Arguments

x

data.frame (atomic types, with at least 1 row and 1 column).

...

not used for values, forces later arguments to bind by name.

time_format

character, format for "POSIXt" classes.

formatC_options

named list, options for formatC()- used on numerics.

Value

chracter

See Also

build_frame, qchar_frame

Examples

Run this code
# NOT RUN {
tc_name <- "training"
x <- build_frame(
  "measure"                   , tc_name, "validation", "idx" |
  "minus binary cross entropy", 5      , 7           , 1L    |
  "accuracy"                  , 0.8    , 0.6         , 2L    )
print(x)
cat(draw_frame(x))

# }

Run the code above in your browser using DataLab