This function is a proxy for calling peeking function.
ic_peek(
value,
peeking_function = getOption("icecream.peeking.function"),
max_lines = getOption("icecream.max.lines")
)
A string to be printed.
The result of evaluating an expression inside the ic()
function.
The function used to peek at the value. Default value is set by the "icecream.peeking.function" option.
Maximum number of lines printed. Default value is set by the "icecream.max.lines" option.
Default value of icecream.peeking.function
is ic_autopeek
. Suggested possible
alternatives are:
print
head
summary
ic_autopeek()
utils::str()
base::print()
utils::head()
base::summary()
tibble::glimpse()