src/responsibleai/rai_analyse/_score_card/classification_components.py [280:297]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def get_feature_importance_page(data):
    return cc.get_feature_importance_page(data)


def get_causal_page(data):
    return cc.get_causal_page(data)


def get_fairlearn_page(data):
    heading = div(
        p(
            "Understand your model's fairness issues "
            "using group-fairness metrics across sensitive features and cohorts. "
            "Pay particular attention to the cohorts who receive worse treatments "
            "(predictions) by your model."
        ),
        _class="left",
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/responsibleai/rai_analyse/_score_card/regression_components.py [183:200]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def get_feature_importance_page(data):
    return cc.get_feature_importance_page(data)


def get_causal_page(data):
    return cc.get_causal_page(data)


def get_fairlearn_page(data):
    heading = div(
        p(
            "Understand your model's fairness issues "
            "using group-fairness metrics across sensitive features and cohorts. "
            "Pay particular attention to the cohorts who receive worse treatments "
            "(predictions) by your model."
        ),
        _class="left",
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



