Change legend location and labels in Seaborn scatter plot(更改海运散点图中的图例位置和标签)
本文介绍了更改海运散点图中的图例位置和标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要更改我的图例在海运散点图中的位置和标签。以下是我的代码:
ax_total_message_ratio=sns.scatterplot(x='total_messages', y='email_messages_ratio',hue='poi',data=df_new)
ax_total_message_ratio.set_title("Email Messages Ratio vs. Total Messages Across Poi",y=1.12,fontsize=20,fontweight='bold')
ax_total_message_ratio.set_ylabel('Email Messages Ratio')
ax_total_message_ratio.set_xlabel('Total Messages')
ax_total_message_ratio.legend.loc("lower right")
put.show()
但我收到以下错误消息;
'function' object has no attribute 'loc'
。我能得到一些关于如何控制希伯伦传奇的帮助吗?此外,我还需要在图例标签中将0
替换为No,将1
替换为Yes。谢谢
推荐答案
您可以使用调用legend()
中的loc
关键字调整位置,Like
ax_total_message_ratio.legend(loc="lower right")
要包括标记的自定义标签,您可以创建自定义图例,即
import matplotlib.pyplot as plt
from matplotlib.lines import Line2D
custom = [Line2D([], [], marker='.', color='b', linestyle='None'),
Line2D([], [], marker='.', color='r', linestyle='None')]
fig = plt.figure(figsize=(8,5))
plt.legend(custom, ['Yes', 'No'], loc='lower right')
plt.show()
这将为您提供
和应删除自动生成的图例,仅保留自定义图例。
这篇关于更改海运散点图中的图例位置和标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:更改海运散点图中的图例位置和标签
基础教程推荐
猜你喜欢
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01