Matplotlib / Seaborn: передача нецелых чисел в качестве трехэлементной спецификации позиции устарела с 3.3

#matplotlib #seaborn #python-3.6

#matplotlib #seaborn #python-3.6

Вопрос:

Я не понимаю это сообщение об ошибке:

MatplotlibDeprecationWarning: Passing non-integers as three-element position specification is deprecated since 3.3 and will be removed two minor releases later.

Не могли бы вы дать мне подсказку?

К вашему сведению, мой (не исполняемый) код приведен ниже

 import seaborn as sns
import matplotlib.pyplot as plt

for p in ps:
    p_metrics = output_metrics.loc[output_metrics["p"] == p, :]
    g = sns.relplot(x="k", y="metric_value", col="metric_name", hue="ref/eval", style="ref/eval",
                    col_wrap=np.ceil(np.sqrt(len(metrics))), palette="muted", kind="line",
                    dashes=False, legend="full", facet_kws={"sharex": False, "sharey": False},
                    data=p_metrics, markers=self.filled_markers)

    g.savefig(f"plot_cat1_p={p}.png")
    if show:
        plt.show()
  

Ответ №1:

Я думаю, проблема в том, что ожидается, и вы передаете, попробуйте преобразовать его в int col_wrap= int float : col_wrap=int(np.ceil(np.sqrt(len(metrics))))