Dealing with plotting negative, zero and positive values in log scale
Sometimes you have to show positive, zero and negative number in log scale. However you cannot take log of negative numbers and zero. But one could approximate it with a log transform modulus as stated here.
In Python with numpy:
from numpy import sign, abs, log10
import matplotlib.pyplot as …
Continue reading