Consider the code in the example which is
import plotly.express as px
df = px.data.gapminder().query("year == 2007")
fig = px.scatter(df, x="gdpPercap", y="lifeExp", hover_name="country", log_x=True)
fig.show()
and produces
Is it possible that the ticks in the x axis would show 2000, 20k and so on instead of 2, and the same for 3, 4 ... ?

 
    
