79557729

Date: 2025-04-06 02:32:33
Score: 2
Natty:
Report link

Try something like this:

from matplotlib import pyplot as plt
import numpy as np

Xs = np.linspace(-2.0, 2.0)
Ys = 10.0**Xs

plt.plot(Xs, Ys)
plt.yscale("functionlog", functions=(
    lambda x: np.log10(x + 1.0),
    lambda x: 10.0**x - 1.0))
plt.show()

Example image

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: amtinits