fig,ax = plt.subplots()的理解

fig,ax = plt.subplots()的理解:

import matplotlib.pyplot as plt
fig,ax = plt.subplofts(2,3)

fig,ax = plt.subplots()的意思是,建立一个fig对象,建立一个axis对象,更加简洁。
也可以使用:

fig=plt.figure()
ax=fig.add_subplot(2,3)

你可能感兴趣的:(备忘)