Top |
int | printmodel () |
const char * | estimator_string () |
void | arma_extra_info () |
void | print_model_vcv_info () |
int | ols_print_anova () |
int | print_coeffs () |
int | print_model_from_matrices () |
gretlopt | get_printmodel_opt () |
int | print_coeff_intervals () |
int printmodel (MODEL *pmod
,const DATASET *dset
,gretlopt opt
,PRN *prn
);
Print to prn
the estimates in pmod
plus associated statistics.
void print_model_vcv_info (const MODEL *pmod
,const DATASET *dset
,PRN *prn
);
int print_coeffs (const double *b
,const double *se
,const char **names
,int nc
,int df
,int ci
,PRN *prn
);
int print_model_from_matrices (const gretl_matrix *cs
,const gretl_matrix *adds
,gretl_array *names
,int df
,gretlopt opt
,PRN *prn
);
Prints to prn
the coefficient table and optional additional statistics
for a model estimated "by hand". Mainly useful for user-written functions.
The number of string in the array names
must be >= k + p, where k is
the number of coefficients and p the number of additional statistics
given in adds
.
cs |
k x 2 matrix containing coefficients and standard errors. |
|
adds |
matrix containing an additional p statistics, or NULL. |
|
names |
array of strings containing all required names. |
|
df |
degrees of freedom, or 0 for asymptotic. |
|
opt |
may contain OPT_I fpr printing the extra stats inline. |
|
prn |
gretl printer. |