Eval Type

This is a datatype to track function evaluations:

SMM.EvalType

Eval type for managing function evaluations

fields

  • value: current function value
  • time: timing of evaluation
  • params: OrderedDict of parameters
  • simMoments: OrderedDict of moments generated by model
  • dataMoments: OrderedDict of data moments
  • dataMomentsW: OrderedDict of weights for data moments
  • status: Int error status
  • prob: probability of acceptance
  • accepted: whether draw was accepted
  • options: Dict of options and other info
source
SMM.check_momentsMethod
check_moments(ev::Eval)

returns all data and simluated moments of a single Eval as a dataframe.

source