Hi i have a choropleth map for the world most of the countries in this map have similar values except
China and the U.S.A so most of the countries have the same color
how can i make a Logarithmic color scale to pass this problem
THIS IS MY CODE
fig = go.Figure()
fig.add_choropleth(locations=df['countery_name_iso'],
z=df['value'],
text=df['countery_name_iso'],
colorscale='cividis',
autocolorscale=False,
reversescale=False)
fig.show()