“SNS Histplot ändern Legendenetiketten” Code-Antworten

SNS Histplot ändern Legendenetiketten

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

Standardpaarplot Seaborn -Legende zur Kontrolle der Position

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

Ähnliche Antworten wie “SNS Histplot ändern Legendenetiketten”

Fragen ähnlich wie “SNS Histplot ändern Legendenetiketten”

Weitere verwandte Antworten zu “SNS Histplot ändern Legendenetiketten” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen