Skip to contents

Generate a space-filling design using Latin hypercube sampling. Dependent parameters whose constraints are unsatisfied generate NA entries in their respective columns.

Usage

generate_design_lhs(param_set, n, lhs_fun = NULL)

Arguments

param_set

(ParamSet).

n

(integer(1))
Number of points to sample.

lhs_fun

(function(n, k))
Function to use to generate a LHS sample, with n samples and k values per param. LHS functions are implemented in package lhs, default is to use lhs::maximinLHS().

Value

Design.

See also

Examples

ps = ParamSet$new(list(
  ParamDbl$new("ratio", lower = 0, upper = 1),
  ParamFct$new("letters", levels = letters[1:3])
))

if (requireNamespace("lhs", quietly = TRUE)) {
  generate_design_lhs(ps, 10)
}
#> <Design> with 10 rows:
#>          ratio letters
#>  1: 0.21309774       a
#>  2: 0.87804760       c
#>  3: 0.35487693       b
#>  4: 0.68708383       a
#>  5: 0.51709752       c
#>  6: 0.19979122       a
#>  7: 0.73836655       b
#>  8: 0.96204900       b
#>  9: 0.06948405       c
#> 10: 0.49310407       b