messagefunctions: Manipulate messages and warnings

Description Usage Arguments Value Examples

Description

with_message and with_warning add a warning or a message to a function. without_message and without_warning turn the warning and message off.

Usage

1
2
3
4
5
6
7

Arguments

.f

the function to wrap

msg

the message to print

Value

a function

Examples

1
2
msg_as_num <- with_message(as.numeric, msg = "Numeric conversion")
warn_as_num <- with_warning(as.numeric, msg = "Numeric conversion")

attempt documentation built on May 4, 2020, 1:05 a.m.