I am trying to have seaborn facetgrid subplots with rotated axis, but I can't seem to rotate all the axis, only the last one. Any tips? The code below leaves the chart with just the last subplot with a rotate axis.
# Create a grid : initialize it
g = sns.FacetGrid(df_full_year, col='segment', hue='segment', col_wrap=4,sharey=False,sharex=False)
# Add the line over the area with the plot function
g = g.map(plt.bar, 'Currency', 'received_usd')
# Fill the area with fill_between
g = g.map(plt.bar, 'Currency', 'received_usd', alpha=.6).set_titles("{col_name} country")
# Control the title of each facet
g = g.set_titles("{col_name}")
# Add a title for the whole plot
plt.subplots_adjust(top=.92)
g = g.fig.suptitle('Evolution of the value of stuff in 16 countries')
plt.xticks(rotation=45)
# Show the graph
plt.show()