《利用python进行数据分析》中pd.read_table出现ParserWarning

在读《利用python进行数据分析》进行到第二章,MoveLens 1M数据集的时候,出现了《利用python进行数据分析》中pd.read_table出现ParserWarning_第1张图片

C:\Python36\Scripts\ipython:1: ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support regex separators (separators > 1 char and different from '\s+' are interpreted as regex); you can avoid this warning by specifying engine='python'.

但是非非常诡异的其实这是第二次运行了,第一次运行pd.readtable没有出现任何问题,然后大致看明白是C引擎不支持分隔符sep长度大于1的问题,进需要备注引擎为python,和书内内容不一样

《利用python进行数据分析》中pd.read_table出现ParserWarning_第2张图片

你可能感兴趣的:(python,python数据分析)