Closed twallema closed 3 months ago
A draw function is defined as follows,
def draw_function(param_dict, samples_dict): return param_dict
The argument samples_dict is passed from the sim function, where it is named samples. I suggest renaming samples_dict to samples and param_dict to parameters for uniformity.
samples_dict
sim
samples
param_dict
parameters
Partly addressed in PR #73 . To be further generalized.
Fully generalized in PR #75 Closing this issue
A draw function is defined as follows,
The argument
samples_dict
is passed from thesim
function, where it is namedsamples
. I suggest renamingsamples_dict
tosamples
andparam_dict
toparameters
for uniformity.