anything {quickcheck} | R Documentation |
Any R object generator
Description
Generate any R object. This doesn't actually generate any possible object,
just the most common ones, namely atomic vectors, lists, data.frames,
tibbles, data.tables, and undefined values like NA
, NULL
, Inf
, and
NaN
.
Usage
anything(any_empty = TRUE, any_undefined = TRUE)
Arguments
any_empty |
Whether empty vectors or data frames should be allowed. |
any_undefined |
Whether undefined values should be allowed. |
Value
A quickcheck_generator
object.
Examples
anything() %>% show_example()
[Package quickcheck version 0.1.3 Index]