在运行python项目时,我收到了以下警告消息,
numpy\core\fromnumeric.py:3417: FutureWarning: In a future version, DataFrame.mean(axis=None) will return a scalar mean over the entire DataFrame. To retain the old behavior, use 'frame.mean(axis=0)' or just 'frame.mean()'
有没有办法压制这种预警信息,会不会造成什么隐患?
1条答案
按热度按时间bfnvny8b1#
在计算均方根误差时也会出现警告
并且,在我添加
axis=0
之后,警告消息消失了我认为该警告来自DataFrame对象,该对象有许多行,但只有一列。