我正在使用Seaborn kdeplot
来绘制数据的累积分布。每个数据帧长约150万行。我将它们串联到一个大数据框中。
当我尝试绘制它们时,出现以下警告:
IntegrationWarning: The occurrence of roundoff error is detected, which prevents the requested tolerance from being achieved. The error may be underestimated
warnings.warn(msg, IntegrationWarning)
/home/my_computer/anaconda3/lib/python3.7/site-packages/scipy/integrate/quadpack.py:385
当我仅连接三个数据框时,它会起作用,并且会显示绘图。但随后我将其串联10,得到警告。
这是我给kdeplot打电话的示例:
sns.kdeplot(df_list[i][header], cumulative=True, legend=False, ax=ax1)
有没有办法解决这个问题?
对数据框进行采样以使用更少的行是否可行?