View source: R/S03_Utilities.R
empty_list | R Documentation |
Creates a list with a specified number of empty slots.
empty_list(size, labels = NULL)
size |
The number of slots. |
labels |
An optional character
vector (whose length equals
|
A list.
# An empty list with 3 slots
empty_list(3)
# An empty list with labels
empty_list( 3, paste0( "S0", 1:3 ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.