printToChar: Prints object to a string / character vector.

View source: R/printToChar.R

printToCharR Documentation

Prints object to a string / character vector.

Description

Prints object to a string / character vector.

Usage

printToChar(x, collapse = "\n")

Arguments

x

[any]
Object to print

collapse

[character(1)]
Used to collapse multiple lines. NULL means no collapsing, vector is returned. Default is ā€œ\nā€.

Value

[character].

Examples

x = data.frame(a = 1:2, b = 3:4)
str(printToChar(x))

BBmisc documentation built on Sept. 29, 2022, 5:12 p.m.

Related to printToChar in BBmisc...