|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.metaqtl.MultiFitResult
public class MultiFitResult
This class represents a result of a multilinear regression analysis.
| Field Summary | |
|---|---|
double |
chi2
The chi-square of the model. |
double[][] |
cov
The variance-covariance matrix of the parameter estimates. |
int |
dof
The number of degrees of freedom. |
int |
m
The number of parameters |
int |
n
The number of observations without missing data. |
double |
pvalue
The p-value of the model. |
double[] |
rsd
The residual standard deviations. |
double[] |
theta
The parameter estimates. |
| Constructor Summary | |
|---|---|
MultiFitResult(int N,
int M)
Creates a new instance of MultiFitResult
with the given number of observations N
and parameters M. |
|
| Method Summary | |
|---|---|
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public double pvalue
public double[] theta
public double[][] cov
public double chi2
public double[] rsd
public int m
public int n
public int dof
| Constructor Detail |
|---|
public MultiFitResult(int N,
int M)
MultiFitResult
with the given number of observations N
and parameters M.
N - the number of observations.M - the number of parameters.| Method Detail |
|---|
public java.lang.String toString()
toString in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||