How can I change the rotation of the titles in each Facet (subplot) of a seaborn figure-level plot.
I would like to rotate label at the top by 90 degrees, and remove label at the bottom.

import seaborn as sns
sns.set_theme(style="whitegrid")
df = sns.load_dataset("exercise")
# Draw a pointplot to show pulse as a function of three categorical factors
g = sns.catplot(x="time", y="pulse", hue="kind", col="diet",
capsize=.2, palette="YlGnBu_d", height=6, aspect=.75,
kind="point", data=df)
g.despine(left=True)

