Set control parameters for a lazy learning object.
| conIdPar | Parameter controlling the number of neighbors to be used
for identifying and validating constant models. conIdParcan assume
different forms: 
conIdPar=c(idm0,idM0,valM0): In this case,
idm0:idM0is the range in which the best number of
neighbors is searched when identifying the local polynomial
models of degree 0 and wherevalM0is the maximum
number of neighbors used for their validation.  This means
that the constant models identified withkneighbors,
are validated on the firstvneighbors, wherev=min(k,valM0).  IfvalM0=0,valM0is set
toidMO: see next case for details.conIdPar=c(idm0,idM0): Here idm0andidM0have the same role as in previous case, andvalM0is by default set toidM0: each model is
validated on all the neighbors used in identification.conIdPar=p: Here idmOandidMOare
obtained according to the following formulas:idm0=3andidMX=5*p. Recommended choice:p=1. As far as
the quantityvalM0is concerned, it gets the default
value as in previous case.conIdPar=NULL: No constant model is considered. | 
| linIdPar | Parameter controlling the number of neighbors to be used
for identifying and validating linear models. linIdParcan assume
different forms: 
linIdPar=c(idm1,idM1,valM1): In this case,
idm1:idM1is the range in which the best number of
neighbors is searched when identifying the local polynomial
models of degree 1 and wherevalM1is the maximum
number of neighbors used for their validation.  This means
that the linear models identified withkneighbors, are
validated on the firstvneighbors, wherev=min(k,valM1).  IfvalM1=0,valM1is set
toidM1: see next case for details.linIdPar=c(idm1,idM1): Here
idm1andidM1have the same role as in previous
case, andvalM1is by default set toidM1: each
model is validated on all the neighbors used in identification.linIdPar=p: Here idmOandidMOare
obtained according to the following formulas:idm1=3*noParandidM1=5*p*noPar, wherenoPar=nx+1is the number of parameter of the polynomial
model of degree 1, andnxis the dimensionality of the
input space. Recommended choice:p=1. As far as the
quantityvalM1is concerned, it gets the default value
as in previous case.linIdPar=NULL: No linear model is considered. | 
| quaIdPar | Parameter controlling the number of neighbors to be
used for identifying and validating quadratic
models. quaIdParcan assume different forms: 
quaIdPar=c(idm2,idM2,valM2): In this case,
idm2:idM2is the range in which the best number of
neighbors is searched when identifying the local polynomial
models of degree 2 and wherevalM2is the maximum
number of neighbors used for their validation.  This means
that the quadratic models identified withkneighbors, are
validated on the firstvneighbors, wherev=min(k,valM2).  IfvalM2=0,valM2is set
toidM2: see next case for details.quaIdPar=c(idm2,idM2): Here
idm2andidM2have the same role as in previous
case, andvalM2is by default set toidM2: each
model is validated on all the neighbors used in identification.quaIdPar=p: Here idmOandidMOare
obtained according to the following formulas:idm2=3*noParandidM2=5*p*noPar, where in this
case the number of parameters isnoPar=(nx+1)*(nx+2)/2, andnxis the
dimensionality of the input space. Recommended choice:p=1. As far as the quantityvalM2is concerned,
it gets the default value as in previous case.quaIdPar=NULL: No quadratic model is considered. | 
| distance | The distance metric: can be manhattanoreuclidean. | 
| metric | Vector of nelements. Weights used to evaluate
the distance between query point and neighbors. | 
| cmbPar | Parameter controlling the local combination of
models. cmbParcan assume different forms: 
cmbPar=c(cmb0,cmb1,cmb2): In this case, cmbXis the number of polynomial models of degreeXthat will
be included in the local combination. Each local model will be
therfore a combination of the bestcmb0models of degree 0, the bestcmb1models of
degree 1, and the bestcmb2models of degree 2
identified as specified byidPar.cmbPar=cmb: Here cmbis the number of models
that will be combined, disregarding any constraint on the
degree of the models that will be considered.  Each local model
will be therfore a combination of the bestcmbmodels, identified as specified byid_par. | 
| lambda | Initialization of the diagonal elements of the local
variance/covariance matrix for Ridge Regression. |