diff --git a/audplot/core/api.py b/audplot/core/api.py index eadacb9..5715598 100644 --- a/audplot/core/api.py +++ b/audplot/core/api.py @@ -1,5 +1,6 @@ import math import typing +import warnings import matplotlib import matplotlib.pyplot as plt @@ -174,10 +175,15 @@ def confusion_matrix( cm = pd.DataFrame(cm, index=labels) # Set format of first row labels in confusion matrix - if percentage: - annot = cm.applymap(lambda x: f"{100 * x:.0f}%") - else: - annot = cm.applymap(lambda x: human_format(x)) + with warnings.catch_warnings(): + # Catch warning, + # to still support older pandas versions. + # See https://github.com/audeering/audplot/pull/69 + warnings.simplefilter(action="ignore", category=FutureWarning) + if percentage: + annot = cm.applymap(lambda x: f"{100 * x:.0f}%") + else: + annot = cm.applymap(lambda x: human_format(x)) # Add a second row of annotations if requested if show_both: @@ -188,10 +194,16 @@ def confusion_matrix( normalize=not percentage, ) cm2 = pd.DataFrame(cm2, index=labels) - if percentage: - annot2 = cm2.applymap(lambda x: human_format(x)) - else: - annot2 = cm2.applymap(lambda x: f"{100 * x:.0f}%") + + with warnings.catch_warnings(): + # Catch warning, + # to still support older pandas versions. + # See https://github.com/audeering/audplot/pull/69 + warnings.simplefilter(action="ignore", category=FutureWarning) + if percentage: + annot2 = cm2.applymap(lambda x: human_format(x)) + else: + annot2 = cm2.applymap(lambda x: f"{100 * x:.0f}%") # Combine strings from two dataframes # by vectorizing the underlying function.