CONAN._classes.load_result.get_all_params_dict#
- CONAN._classes.load_result.get_all_params_dict(stat='med', uncertainty='1sigma', return_type='ufloat', verbose=True)#
Get all parameters(jumping,derived,fixed) from the result_**.dat and load in a dictionary with uncertainties.
- Parameters:
stat (str;) – summary statistic to load for model calculation. Must be one of [“med”,”max”,”bf”] for median, maximum and bestfit respectively. Default is “med” to load the ‘result_med.dat’ file.
uncertainty (str;) – uncertainty to load from file. Must be one of [“1sigma”,”3sigma”] for 1sigma or 3sigma uncertainties. Default is “1sigma”.
return_type (str;) – return type of the values. Must be one of [“float”,”ufloat”,”array”] to return each parameter as ufloat(val,+/-sigma) or array of [val,lo_sigma,hi_sigma]. Default is “ufloat”.
verbose (bool;) – print the file being loaded.
- Returns:
results_dict – dictionary of all parameters with uncertainties for jumping and derived parameters
- Return type:
dict;