nl_param_fast R Documentation

Generate a parameter value sets for the FAST method

Description

Uses fast_parameters from fast package to create parameter sets for Fourier Amplitute Sensitivity Test (FAST).

Usage

nl_param_fast(...)

Arguments

...

Named list of parameter ranges (numeric vectors)

Details

Uses only parameters with min != max values to create parameter sets. Adds dummy variable.

Value

A data frame with parameter value sets.

See Also

Use nl_get_fast_sensitivity to get sensitivity data. See fast package documentation for FAST algorithm details. from the simulation results. See nl_param_lhs for latin hypercube sampling.

Examples

param_values <- nl_param_fast(
  world_size = 50,
  population = 80,
  max_align_turn = c(1, 5, 20),
  max_cohere_turn = c(1, 3, 20),
  max_separate_turn = c(1, 1.5, 20),
  vision = c(1, 3, 10),
  minimum_separation = c(1, 3, 10)
)