Class "gausspr"
The Gaussian Processes object class class
Objects can be created by calls of the form new("gausspr", ...)
. or by calling the gausspr
function
tol
:: Object of class "numeric"
contains tolerance of termination criteriakernelf
:: Object of class "kfunction"
contains the kernel function usedkpar
:: Object of class "list"
contains the kernel parameter usedkcall
:: Object of class "list"
contains the used function calltype
:: Object of class "character"
contains type of problemterms
:: Object of class "ANY"
contains the terms representation of the symbolic model used (when using a formula)xmatrix
:: Object of class "input"
containing the data matrix usedymatrix
:: Object of class "output"
containing the response matrixfitted
:: Object of class "output"
containing the fitted valueslev
:: Object of class "vector"
containing the levels of the response (in case of classification)nclass
:: Object of class "numeric"
containing the number of classes (in case of classification)alpha
:: Object of class "listI"
containing the computes alpha valuesalphaindex
: Object of class "list"
containing the indexes for the alphas in various classes (in multi-class problems).sol
: Object of class "matrix"
containing the solution to the Gaussian Process formulation, it is used to compute the variance in regression problems.scaling
: Object of class "ANY"
containing the scaling coefficients of the data (when case scaled = TRUE
is used).nvar
:: Object of class "numeric"
containing the computed varianceerror
:: Object of class "numeric"
containing the training errorcross
:: Object of class "numeric"
containing the cross validation errorn.action
:: Object of class "ANY"
containing the action performed in NAsignature(object = "gausspr")
: returns the alpha vectorsignature(object = "gausspr")
: returns the cross validation errorsignature(object = "gausspr")
: returns the training errorsignature(object = "vm")
: returns the fitted valuessignature(object = "gausspr")
: returns the call performedsignature(object = "gausspr")
: returns the kernel function usedsignature(object = "gausspr")
: returns the kernel parameter usedsignature(object = "gausspr")
: returns the response levels (in classification)signature(object = "gausspr")
: returns the type of problemsignature(object = "gausspr")
: returns the data matrix usedsignature(object = "gausspr")
: returns the response matrix usedsignature(object = "gausspr")
: returns the scaling coefficients of the data (when scaled = TRUE
is used)Alexandros Karatzoglou
alexandros.karatzoglou@ci.tuwien.ac.at
gausspr
, ksvm-class
, vm-class
# train model data(iris) test <- gausspr(Species~.,data=iris,var=2) test alpha(test) error(test) lev(test)
Useful links