当我在代码下面运行时,我会收到特定的警告
import numpy as np
from statsmodels.tsa.stattools import kpss
kpss(np.random.choice(range(-1000,1000),10000))
警告消息
<stdin>:1: InterpolationWarning: The test statistic is outside of the range of p-values available in the
look-up table. The actual p-value is greater than the p-value returned.
是否可以只忽略此警告,而不影响代码文件其他部分中可能出现的任何其他警告的显示
1条答案
按热度按时间sy5wg1nm1#
一种方法是通过从
statsmodels.tools.sm_exceptions
导入warning
模块和InterpolationWarning
来静音插值警告:现在,运行:
输出