View source: R/nodelist_edgelist_gen.R
blank_nodelist | R Documentation |
The nodelist is a data frame that contains information for the actors in
a simulation, including names and EPA dictionaries and equations to use.
This function creates a blank nodelist. Actor lines can be added with
add_actor()
(recommended) or manually.
blank_nodelist(
use.alphas = FALSE,
use.betas = FALSE,
use.deltas = FALSE,
use.numsamples = FALSE
)
use.alphas , use.betas , use.deltas |
logical indicating whether to include columns for alpha, beta, or delta parameters. All default to FALSE. See the BayesACT C documentation for more information on these parameters. |
use.numsamples |
logical indicating whether to include a numsamples column. See the BayesACT C documentation for more information on this parameter. |
Empty nodelist data frame with correct column names
blank_nodelist()
blank_nodelist(use.alphas = TRUE, use.numsamples = TRUE)
blank_nodelist(use.alphas = TRUE, use.betas = TRUE, use.deltas = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.