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.28278957       a
#>  2: 0.56354190       c
#>  3: 0.13268556       b
#>  4: 0.60674401       a
#>  5: 0.80480773       b
#>  6: 0.48428671       b
#>  7: 0.94984252       a
#>  8: 0.39178722       a
#>  9: 0.07836953       c
#> 10: 0.72781920       c