在Seaborn Facetgrid中添加图例

时间:2019-04-03 13:59:54

标签: seaborn facet-grid

我遇到了麻烦,将我的两个地块的名称(标签)添加到了seaborn facetgrid中。

代码如下-这两张图位于数据集中的两个不同列中。因此,我不知道如何添加名称Pro_index和H_index。

by_var = 'industry'
y_var  = 'year'

g = sns.FacetGrid(df_index, col=by_var, hue=by_var, col_wrap=3, sharex=True, sharey=True, height=8, aspect=1.5)
g = (g.map(plt.plot, 'year', 'Pro_index', color='y').add_legend()) 
g = (g.map(plt.plot, 'year', 'H_index', color='m').add_legend())
g = g.set_titles("{col_name}") 
g = g.set_ylabels('Index, base year = 2010 ')

相反,图例显示了变量“行业”的不同值。因此,这里有两个图表的屏幕快照的链接

https://docs.google.com/document/d/1do6ebHgm7ZJJPa1gdNKXKX29Pnjk_qZKnQf0YkwBebU/edit

enter image description here

0 个答案:

没有答案