I have this image:
plt.plot(sim_1[\'t\'],sim_1[\'V\'],\'k\') plt.ylabel(\'V\') plt.xlabel(\'t\') plt.show()
I want to hide the numbers
Without a subplots, you can universally remove the ticks like this:
subplots
plt.xticks([]) plt.yticks([])