g = sns.FacetGrid(tips, col="time", row="sex")
g.map(sns.countplot, "Year")
How do I display the values on top of each bar?
g = sns.FacetGrid(tips, col="time", row="sex")
g.map(sns.countplot, "Year")
How do I display the values on top of each bar?