Below are the additional arguments that can be used:- size: A non-negative integer giving the number of samples to pick.
- cost: A character giving the name or an integer giving the index of the attribute in x that gives a cost that can be use to constrain the cLHS sampling. If NULL (default), the cost-constrained implementation is not used.
- track: A character giving the name or an integer giving the index of the attribute in x that gives a cost associated with each individual. However, this method will only track the cost - the sampling prrocess will not be constrained by this attribute. If NULL (default), this option is not used.
- iter: A positive number, giving the number of iterations for the Metropolis-Hastings annealing process. Defaults to 10000.
- temp: The initial temperature at which the simulated annealing begins. Defaults to 1.
- tdecrease: A number betwen 0 and 1, giving the rate at which temperature decreases in the simulated annealing process. Defaults to 0.95.
- weights: A list a length 3, giving the relative weights for continuous data, categorical data, and correlation between variables. Defaults to list(numeric = 1, factor = 1, correlation = 1).
- obj.limit: The minimal value at which the optimisation is stopped. Defaults to -Inf.
- length.cycle: The duration (number of iterations) of the isotemperature steps. Defaults to 10.
- progress: TRUE or FALSE, displays a progress bar.
- simple: TRUE or FALSE. If set to TRUE, only the indices of the selected samples are returned, as a numeric vector. If set to FALSE, a cLHS_result object is returned (takes more memory but allows to make use of cLHS_results methods such as plot.cLHS_result).