Repeating x axis labels for all facets using FacetGrid in seaborn

北城余情 提交于 2020-01-01 05:28:11

问题


I am working with the FacetGrid example presented here that results in the plot below. In my data set, there is quite a lot of plots, and it would be convenient to have the x axis labels repeated for each facet, not only at the bottom.

For this example, the values 62, ..., 76 should be repeated for each of the A-J facets.


回答1:


The answer by Bazingaa works for matplotlib version 2.0.2. For newer versions of matplotlib, using ax.tick_params() and setting labelbottom=True seems to work:

for ax in g.axes.flatten():
    ax.tick_params(labelbottom=True)



回答2:


Just add the following lines after your def label(): function. Although the plot doesn't look that good with the modification you want.

for ax in g.axes.flat:
    _ = plt.setp(ax.get_xticklabels(), visible=True)

Output



来源:https://stackoverflow.com/questions/52182322/repeating-x-axis-labels-for-all-facets-using-facetgrid-in-seaborn

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!