builtin_algorithm_hpo_tabular/util/classification_report.py [70:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                y_predict,
                                axis=None,
                                plot_style='ggplot'):
    
    if axis is None:  # for standalone plot
        plt.figure()
        ax = plt.gca()
    else:  # for plots inside a subplot
        ax = axis

    plt.style.use(plot_style)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



builtin_algorithm_hpo_tabular/util/classification_report.py [103:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                   y_predict,
                   axis=None,
                   plot_style='ggplot'):
    
    if axis is None:  # for standalone plot
        plt.figure()
        ax = plt.gca()
    else:  # for plots inside a subplot
        ax = axis
    
    plt.style.use(plot_style)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



