import pandas as pd
import seaborn as sns
tips = sns.load_dataset("tips")
tips['total_bill']=tips.total_bill*10**(tips.index/60+2)
sns.set(font_scale=2)
g=sns.relplot(data=tips,height=5, x="total_bill", y="tip", hue="day", col="time")
g.set(xscale='log')
According to different params (font_scale,height,etc),
there might be some minor ticker for each 1/10 or not on the plt. 
How to make sure all minor tickers for each 1/10 be shown in all subplots?
like this:

.set()turns the ticks off by default, uses its darkgrid style, which modifies the matplotlib rc parameters, and sets thextick.bottomandytick.leftparameters toFalse, however the options in the answer do not resolve the issue.sns.setmay be removed in future releases.python 3.10,pandas 1.4.2,matplotlib 3.5.1,seaborn 0.11.2With
sns.set(font_scale=2, style='ticks')Without Using
.set