我对''的含义感到不解。 ax '关键字在pandas 散点矩阵(scatter_matrix function:
pd.散点矩阵(scatter_matrix(frame, alpha=0.5, figsize=None, ax=None , grid=False, diagonal='hist', marker='. ', density_kwds={}, hist_kwds={}, **kwds)
docstring中给出的关于ax关键字的唯一线索对我来说太隐蔽了。
ax : Matplotlib axis object
I had a look in the pandas code for the 散点矩阵(scatter_matrix function, and the ax variable is incorporated in the following matplotlib subplots call:
fig, axes = plt.subplots(nrows=n, ncols=n, figsize=figsize, ax=ax,
squeeze=False)
但是,在我的生活中,我找不到任何关于matplotlib子图中的'ax'关键字的参考资料!我不知道。
谁能告诉我这个斧头关键词是干什么的?