I have to execute a large number of functions, with a variety of different arguments. How can I map a function over a dictionary of functions w/ lists of arguments
Rather than:
a = np.array([1,2,3,4,5,6])
np.mean(a)
np.quantile(a,q=0.5)
np.quantile(a,q=0.5)
Unpack and execute across all combinations in dictionary:
f_dict = { 'maximum':{} ,
'quantile': [{'q':"0.5"},{'q':'0.95'}]}
strobjects mapped to otherdictandlistobjects.... no functions in your dict... did you mean to use functions in your dict? What is the point of this dict?