fig,ax = plt.subplots()

361 阅读1分钟

fig,ax = plt.subplots()等价为 fig = plt.figure() ax = fig.add_subplot() 可以在函数里面加figzise、sharex等参数