sharp.qoi
.get_qoi_names¶
- sharp.qoi.get_qoi_names()[source]¶
Get the names of all available quantities of interest.
These names can be passed to
get_qoi()
to retrieve the QoI object.- Returns:
- list of str
Names of all available quantities of interest.
Examples
>>> from sharp.qoi import get_qoi_names >>> all_qois = get_qoi_names() >>> type(all_qois) <class 'list'> >>> all_qois[:3] ['diff', 'flip', 'likelihood'] >>> "ranking" in all_qois True