To remove grid lines in Matplotlib, use the plt.grid(~) method and pass False argument. fig, ax = plt.subplots(). ax.plot([1,2,3]). ax.grid(False).
確定! 回上一頁