seaborn将价值放入酒吧本身

时间:2018-05-31 20:43:10

标签: python-3.x bar-chart seaborn

是否有可能将价值放入酒吧本身?

例如,在这些栏的中心放置数字1-4 这个条形图来自讽刺的例子。

import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.barplot(x="day", y="total_bill", data=tips) 

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用matplotlib.pyplot.text

description should not contain relative URL references: /blog/assets/images/IMG_8196.jpg

enter image description here