Source code for biogeme.results_processing.variance_covariance
"""Possible approximations of the variance-covariance matrixMichel BierlaireMon Jun 23 2025, 17:21:45"""fromenumimportEnum
[docs]classEstimateVarianceCovariance(str,Enum):"""Identifies the estimate of the variance-covariance matrix to be used."""RAO_CRAMER="Rao-Cramer"ROBUST="Robust"BOOTSTRAP="Bootstrap"BHHH="BHHH"def__str__(self)->str:returnself.value