我在Jupyter Notebook中使用Python 3.6.5和Pandas 0.23.0。
我的一些相关进口商品:
import pandas as pd
import matplotlib.pyplot as plt
from pandas.plotting import scatter_matrix
我的生成散点矩阵的代码
scatter_matrix(df_obscured)
关于我的数据框的一些潜在重要提示...我有一个索引字段,我有一个datetime64 [ns]字段,我有大约20个我正在查看的float64字段。
我的问题: 我的散点矩阵非常小。也许2到300像素宽。大多数输出看起来像:
<matplotlib.axes._subplots.AxesSubplot object at 0x0000021AC2DDBFD0>,
<matplotlib.axes._subplots.AxesSubplot object at 0x0000021AC3033DA0>,
如何使散点图更大?
答案 0 :(得分:1)
scatter_matrix
采用figsize参数:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.plotting.scatter_matrix.html
请注意,与其他matplotlib'figsize'参数一样,指定的大小应以英寸为单位,而不是以像素为单位。