If I generate a figure as:
fig = px.scatter_matrix(df, dimensions=columns, color=coloring_column)
I wonder how can I set the x-axes or y-axes to the logarithmic scale.
The fig.update_yaxes(type=scale)
method or the keyword log_x
is not included in the scatter_matrix
function differently from the scatter function.
Thank you