忽略FutureWarning警告信息

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/huoyongliang/article/details/83145913

在学习python的Seaborn时候发现有如下提示,

/usr/local/python3/lib/python3.6/site-packages/scipy/stats/stats.py:1713: FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`. In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a different result.
  return np.add.reduce(sorted[indexer] * weights, axis=axis) / sumval

网上搜索了下可以不显示警告信息

import warnings
warnings.filterwarnings("ignore")

猜你喜欢

转载自blog.csdn.net/huoyongliang/article/details/83145913