printf {mlr3misc} | R Documentation |
Functions for Formatted Output and Conditions
Description
catf()
, messagef()
, warningf()
and stopf()
are wrappers around base::cat()
,
base::message()
, base::warning()
and base::stop()
, respectively.
The call is not included for warnings and errors.
Usage
catf(msg, ..., file = "", wrap = FALSE)
messagef(msg, ..., wrap = FALSE)
warningf(msg, ..., wrap = FALSE)
stopf(msg, ..., wrap = FALSE)
Arguments
msg |
( |
... |
( |
file |
( |
wrap |
( |
Examples
messagef("
This is a rather long %s
on multiple lines
which will get wrapped.
", "string", wrap = 15)
[Package mlr3misc version 0.15.1 Index]