Hi,
sns.set_style("ticks") by default sets the ticks up to face outwards, i.e. the opposite of the matplotlib default. Is there a way to put this back to the default behaviour? I can't seem to figure it out.
thanks.
sns.set_style({"xtick.direction": "in","ytick.direction": "in"})
BTW if you're trying to use seaborn but match default matplotlib style, you can do import seaborn.apionly as sns which should respect the default matplotlib + any rc customization you have.
Most helpful comment
BTW if you're trying to use seaborn but match default matplotlib style, you can do
import seaborn.apionly as snswhich should respect the default matplotlib + any rc customization you have.