Serialized Form
-
Package regress
-
Exception Class regress.RegException
class RegException extends Exception implements Serializable- serialVersionUID:
- 65536L
-
Class regress.RegGUI
class RegGUI extends dialog.TabbedGUI implements Serializable- serialVersionUID:
- 131081L
-
Serialized Fields
-
conf
JTextField conf
the confidence field name -
degree
JSpinner degree
the degree of the polynomial (highest sum of exponents) -
fn_dom
JTextField fn_dom
the domain description file to read -
fn_exe
JTextField fn_exe
the regression model file to execute -
fn_in
JTextField fn_in
the input table file to read -
fn_out
JTextField fn_out
the output table file to write -
fn_reg
JTextField fn_reg
the regression model file to write -
fn_tab
JTextField fn_tab
the table file to read -
lim
JTextField lim
the limit value for a Tikhonov regularization -
logreg
JCheckBox logreg
the limit value for a Tikhonov regularization -
max
JTextField max
the maximum for a logit transformation -
min
JTextField min
the minimum for a logit transformation -
pred
JTextField pred
the prediction field name -
reg
JTextField reg
the initial value for a Tikhonov regularization -
target
JTextField target
the target column name -
thresh
JTextField thresh
the classification threshold
-
-
Class regress.Regression
class Regression extends Object implements Serializable- serialVersionUID:
- 65536L
-
Serialized Fields
-
atts
table.Table atts
the domain descriptions for the regression model (if any) -
buf
double[] buf
the buffer for the power products -
cfs
double[] cfs
the regression coefficients -
cnt
int cnt
the number of regression coefficients -
deg
int deg
the degree of the regression polynomial -
dim
int dim
the number of data variables (including the output/response) -
exps
int[][] exps
the exponents of the regression terms -
lim
double lim
the limit for the Tikhonov regularization -
map
table.TableMapper map
the underlying data table mapper (if any) -
mat
double[][] mat
the regression matrix (coefficients of equation system) -
max
double max
the maximum for a logit transformation -
min
double min
the minimum for a logit transformation -
reg
double reg
the initial Tikhonov regularization -
rhs
double[] rhs
the right hand side of the equation system -
so2
double so2
the sum of the squared output values -
sse
double sse
the sum of squared errors -
sum
double sum
the sum of the data vector weights -
tab
int[] tab
the table of section sizes
-
-
Class regress.RegView
class RegView extends JFrame implements Serializable- serialVersionUID:
- 65540L
-
Serialized Fields
-
about
dialog.AboutDialog about
the "About..." dialog box -
chooser
JFileChooser chooser
the file chooser -
curr
File curr
the current regression model file -
eps
double eps
the minimum absolute value of a coefficient -
epstxt
JTextField epstxt
the text field for setting epsilon -
items
JMenuItem[] items
the context sensitive menu items -
mode
int mode
the mode flags -
owner
Component owner
the owner of this table viewer -
params
JDialog params
the dialog for setting viewing parameters -
reg
Regression reg
the displayed regression model -
scroll
JScrollPane scroll
the scroll pane for the viewport -
stat
JTextField stat
the status bar for messages -
view
JTable view
the table view -
zerocb
JCheckBox zerocb
the check box for zero exponents treatment -
zeros
boolean zeros
whether to show zero exponents
-
-