我在python 2.7中使用pandas和pandas-profiling。我做了一个返回67311行的SQL查询,并使用pandas成功创建了我的数据框。但是,当我跑
时pandas_profiling.ProfileReport(df)
我收到以下错误
ValueError: array is too big; `arr.size * arr.dtype.itemsize` is larger than the maximum possible size.
我检查数据框的尺寸,我有以下行数和列数:
df.shape
Out[55]:
(67311, 30)
我的主要问题是:
如何绕过此错误?
显然,数据集对于pandas-profiling来说太大了,导致以下子问题:
由于