1
1
function Base. show (io:: IO , est:: EstimationStats{D, T} ) where {D, T}
2
- println (" --------------------------------------------------------" )
3
- println (" Distribution: " , D)
4
- println (" Number of observations: " , Int (est. num_obs))
5
- println (" Number of unknown parameters: " , Int (est. np))
6
- println (" Log-likelihood: " , @sprintf (" %.4f" , est. loglikelihood))
7
- println (" AIC: " , @sprintf (" %.4f" , est. aic))
8
- println (" BIC: " , @sprintf (" %.4f" , est. bic))
2
+ println (io, " --------------------------------------------------------" )
3
+ println (io, " Distribution: " , D)
4
+ println (io, " Number of observations: " , Int (est. num_obs))
5
+ println (io, " Number of unknown parameters: " , Int (est. np))
6
+ println (io, " Log-likelihood: " , @sprintf (" %.4f" , est. loglikelihood))
7
+ println (io, " AIC: " , @sprintf (" %.4f" , est. aic))
8
+ println (io, " BIC: " , @sprintf (" %.4f" , est. bic))
9
9
print_coefs_stats (est. coefs_stats)
10
10
return nothing
11
11
end
@@ -63,4 +63,4 @@ function build_print(p_c, p_std, p_t_stat, p_p_val, param)
63
63
p *= " " ^ max (0 , 10 - length (p_p_val))
64
64
p *= p_p_val
65
65
return p
66
- end
66
+ end
0 commit comments