available_assumption_types Signature/Parameters def available_assumption_types(method = None, include_general = True) Return assumption types available for the selected method. Source code in causalinf/assumptions.py 249 250 251 252 253 254 255 256def available_assumption_types(method=None, include_general=True): """Return assumption types available for the selected method.""" return sorted( set( a.assumption_type for a in get_assumptions(method=method, include_general=include_general) ) )