What did that graph look like? At that time, I want to write it lightly and check it (so I don't care if Warning appears).
Log import numpy as np import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.01) y = np.log(x)
plt.grid() plt.plot(x,y) plt.show()
Recommended Posts