| list_mfrmr_data | R Documentation |
List packaged simulation datasets
list_mfrmr_data()
Use this helper when you want to select packaged data programmatically (e.g., inside scripts, loops, or shiny/streamlit wrappers).
Typical pattern:
call list_mfrmr_data() to see available keys.
pass one key to load_mfrmr_data().
Character vector of dataset keys accepted by load_mfrmr_data().
Returned values are canonical dataset keys accepted by load_mfrmr_data().
Capture keys in a script (keys <- list_mfrmr_data()).
Select one key by index or name.
Load data via load_mfrmr_data() and continue analysis.
load_mfrmr_data(), ej2021_data
keys <- list_mfrmr_data()
keys
d <- load_mfrmr_data(keys[1])
head(d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.