Is there a work around to make a symlog plot in Plots.jl?

Hi All,

Is there a way to plot a histogram in Plots.jl with a symlog scale on the x-axis? With matplotlib, there’s a symlog x-scale property. However, there doesn’t seem to be one in Plots.jl? Unless I’ve missed something?

using Plots

# Example data
data = rand(10_000)

# Plot histogram (transformed data)
plt = histogram(
    data,
    bins = 50,
    xscale = :symlog10
)

with the error,

┌ Warning: scale symlog10 is unsupported with Plots.GRBackend().
│ Choose from: [:identity, :ln, :log10, :log2]
└ @ Plots ~/.julia/packages/Plots/8ZnR3/src/args.jl:1590