I know we are not supposed to be able to take the log of a negative number (or 0), but sometimes the scale is really useful.
using Plots
x = -10:0.01:10
y = x
plot(x, y)
plot(x, y, yaxis = log10.(y .+ 100))
It’s not what I thought would happen.
Do you have any suggestions on how to do this?
7 posts - 5 participants