data_frame_of | R Documentation |
Data frame generator with randomized columns
data_frame_of(..., rows = c(1L, 10L), cols = c(1L, 10L))
... |
A set of unnamed generators. The generated data frames will be built with random combinations of these generators. |
rows |
Number of rows of the generated data frame.
If |
cols |
Number of columns of the generated data frame.
If |
A quickcheck_generator
object.
data_frame_of(logical_(), date_()) %>% show_example()
data_frame_of(any_atomic(), rows = 10L, cols = 5L) %>% show_example()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.