当前位置: 首页 > 工具软件 > plotnine > 使用案例 >

plotnine(图例)笔记07

严曜文
2023-12-01

图例设置

1、调整连续变量的图例

guide_colorbar()
guide_colourbar()

2、调整离散型变量的图例

guide_legend()
# 也可以用于连续性

3、用guides嵌套两种

guides(fill=guide_colorbar())
guides(fill=guide_legend())

4、在scale_xx()中定义

guide='colorbar'
guide='legend'

图例位置

# 在theme()中设置legend.position参数
theme(legend_position='right')  # 可以right,left,bottom,top,none(无图例)

# 也可以用(0.9,0.7)这种具体数值指定,一般在0-1内
# 如果使用数值设置,最好先将legend背景设为透明
theme(legend_background=element_rect(fill='white'),\
	  legend_position=(0.3,0.5))
 类似资料: