Description Usage Arguments Value References See Also Examples
summary
method for class bivar
.
1 2 |
object |
an object of class " |
.
... |
other arguments. |
The function summary.bivar
returns the following elements, given an object of the class "bivar
",
Coefficients1 |
a named vector of coefficients for the explanatory variables of the model "1". |
Coefficients2 |
a named vector of coefficients for the explanatory variables of the model "2". |
RMSE1 |
root mean square error for the model "1". |
RMSE2 |
root mean square error for the model "2". |
Rho |
the estimative for the correlation coefficient between Y1 and Y2. |
Phi |
the estimative of the dispersion parameter. |
D |
the goodness-of-fit measure deviance for the current model. |
Lima Neto, E. A., Cordeiro, G. and De Carvalho, F.A.T. (2011). Bivariate symbolic regression models for interval-valued variables. Journal of Statistical Computation and Simulation (Print), 81, 1727–1744.
1 2 3 4 5 | ##-- Continuing the bivar() example:
data("soccer.bivar", package = "iRegression")
ex.bivar <- bivar(yMin~t1Min+t2Min, "identity", yMax~t1Max+t2Max, "identity", data=soccer.bivar)
ex.sum <- summary(ex.bivar)
ex.sum
|
Attaching package: ‘iRegression’
The following object is masked from ‘package:grDevices’:
cm
Call:
bivar.formula(formula1 = yMin ~ t1Min + t2Min, lig1 = "identity",
formula2 = yMax ~ t1Max + t2Max, lig2 = "identity", data = soccer.bivar)
Coefficients1:
[,1]
[1,] -46.2858437
[2,] 0.6322040
[3,] 0.1427709
Coefficients2:
[,1]
[1,] -20.8118364
[2,] 0.5274485
[3,] 0.1569776
RMSE1:
[1] 2.241134
RMSE2:
[1] 2.575446
Rho:
[1] 0.376
Phi:
[1] 5.742479
D:
[1] 195.2443
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.