“SNS Histplot Change Legend Rótulos” Respostas de código

SNS Histplot Change Legend Rótulos

import seaborn as sns

# load the tips dataset
tips = sns.load_dataset("tips")
# plot
g = sns.lmplot(x="total_bill", y="tip", hue="smoker", data=tips, markers=["o", "x"], facet_kws={'legend_out': True})
# title
new_title = 'My title'
g._legend.set_title(new_title)
# replace labels
new_labels = ['label 1', 'label 2']
for t, l in zip(g._legend.texts, new_labels):
    t.set_text(l)
Real Raccoon

Legenda do Seaborn Padrão do Parplot para controlar a posição

    g._legend.set_bbox_to_anchor((0.5, 0.5))
Lonely Louse

Respostas semelhantes a “SNS Histplot Change Legend Rótulos”

Perguntas semelhantes a “SNS Histplot Change Legend Rótulos”

Mais respostas relacionadas para “SNS Histplot Change Legend Rótulos” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código