get.search.modelchecks {ldt} | R Documentation |
Set Options to Exclude a Model Subset
Description
Use this function to determine which models should be skipped in the search process.
Usage
get.search.modelchecks(
estimation = TRUE,
maxConditionNumber = Inf,
minObsCount = 0,
minDof = 0,
minOutSim = 0,
minR2 = -Inf,
maxAic = Inf,
maxSic = Inf,
prediction = FALSE,
predictionBound = 10
)
Arguments
estimation |
If |
maxConditionNumber |
A number used to ignore an estimation that has a high condition number (if implemented in the search). |
minObsCount |
An integer used to ignore an estimation where the number of observations (after dealing with |
minDof |
An integer used to ignore an estimation with low degrees of freedom (equation-wise). Use 0 to disable this check. |
minOutSim |
An integer used to ignore estimations with a low number of out-of-sample simulations (if implemented in the search). |
minR2 |
A number used to ignore estimations with a low value for 'R2' (if implemented in the search). |
maxAic |
A number used to ignore estimations with a high 'AIC' (if implemented in the search). |
maxSic |
A number used to ignore estimations with a high 'SIC' (if implemented in the search). |
prediction |
If |
predictionBound |
A list containing two matrices: |
Value
A list with the given options.