Seaborn: inward facing ticks?

Created on 21 Jul 2014  路  2Comments  路  Source: mwaskom/seaborn

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.

Most helpful comment

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.

All 2 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

sungshine picture sungshine  路  3Comments

rrbarbosa picture rrbarbosa  路  3Comments

TDaltonC picture TDaltonC  路  3Comments

stonebig picture stonebig  路  4Comments

amelio-vazquez-reina picture amelio-vazquez-reina  路  4Comments