如何在Seaborn的facetgrid barplot上添加标签?

时间:2019-07-29 15:41:18

标签: python python-3.x seaborn

我有以下代码:

import pandas as pd
import seaborn as sns


df = pd.DataFrame({'reg': ['A', 'B', 'C'],
                   'file': ['1', '1', '2'],
                   'val': [1, 2, 3]})
g = sns.FacetGrid(df, col='file', hue='reg', col_wrap=3)
g.map(sns.barplot, 'reg', 'val',  order=df.reg.unique()).add_legend()
g.savefig('test_so.png')

如何在栏的顶部添加val的数字?

更新

此问题与this不同,因为该解决方案不适用于facetgrid

0 个答案:

没有答案