pretty_print_name_and_value {usefun} | R Documentation |
Pretty print a name and value
Description
Pretty print a name and value
Usage
pretty_print_name_and_value(name, value, with.gt = FALSE, with.comma = TRUE)
Arguments
name |
string |
value |
string |
with.gt |
logical. Determines if the ">" sign will be appended for nice printing in an R notebook (use with the chuck option results = 'asis'). Default value: FALSE. |
with.comma |
logical. Determines if the comma (,) character will be appended to the end of the output. Default value: TRUE. |
Examples
pretty_print_name_and_value("aName", "aValue", with.gt = TRUE)
pretty_print_name_and_value("aName", "aValue", with.comma = FALSE)
[Package usefun version 0.5.0 Index]