get_PAR_summary {IOHanalyzer} | R Documentation |
Get Parameter Value Summary
Description
Get Parameter Value Summary
Usage
get_PAR_summary(ds, idxValue, ...)
## S3 method for class 'DataSet'
get_PAR_summary(ds, idxValue, parId = "all", which = "by_FV", ...)
## S3 method for class 'DataSetList'
get_PAR_summary(ds, idxValue, algorithm = "all", ...)
Arguments
ds |
A DataSet or DataSetList object |
idxValue |
A Numerical vector. Index values at which parameter values are observed. The index value can either take its value in the range of running times, or function values. Such a value type is signified by 'which' parameter. |
... |
Arguments passed to other methods |
parId |
A character vector. Either 'all' or the name of parameters to be retrieved |
which |
A string takes values in ‘c(’by_FV', 'by_RT')', indicating the parameters to be retrieved are aligned against the running time (RT) or function value (FV). ''by_FV'' is the default value. |
algorithm |
DEPRECATED, will be removed in next release. Which algorithms in the DataSetList to consider. |
Value
A data.table object containing basic statistics of parameter values aligned at each given target value
Examples
get_PAR_summary(dsl, 14)
get_PAR_summary(dsl[[1]], 14)