1. Home
  2. RBDISPLAY directive

RBDISPLAY directive

Displays output from a radial basis function model fitted by RBFIT.

Option

PRINT = strings Controls fitted output (description, estimates, fittedvalues, summary); default desc, esti, summ

Parameter

pointers Save structure with details of the fitted model

Description

RBDISPLAY displays results from the fit of a radial basis function model by RBFIT. Details of the fitted model can be supplied using the parameter of RBDISPLAY. This must have been saved using the SAVE parameter of RBFIT. If this is not set, the output is from the most recent model fitted by RBFIT.

Printed output is controlled by the PRINT option, with settings:

    description a description of the model,
    estimates estimates of the parameters,
    fittedvalues fitted values, and
    summary summary (lack of fit etc.).

Option: PRINT.

Parameter: unnamed.

See also

Directives: RBFIT, RBPREDICT.

Commands for: Data mining.

Example

CAPTION 'RBDISPLAY example',\
   'Predicting the grape cultivar from 13 wine attributes'; STYLE=meta,plain
SPLOAD   '%Data%/WinesTrain.gsh'; ISAVE=pData
POINTER  [VALUES=pData[2...14]] Attributes
GROUPS   Wine; FACTOR=Cultivar
TXCONST  [TEXT=AttrName] Attributes
POINTER  [NVALUES=AttrName] Mn
TABULATE [CLASS=Cultivar] Attributes[]; MEANS=Mn[]

RBFIT [PRINT=*; RBTYPE=linear; LAMBDA=10] Y=Wine; X=Attributes; \
      CENTRES=Mn; FITTED=Fit; SAVE=RBSave

RBDISPLAY [PRINT=description, estimates, fittedvalues, summary] RBSave
Updated on March 11, 2022

Was this article helpful?