Python Falling back to the 'python' engine because the 'c' engine does not support regex separators

  • 环境

Anaconda3 Python 3.6, Window 64bit

  • 书籍

O'Reilly出版的Wes McKinney编的《Python for Data Analysis》

 

 警告: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)

 

解决方法:加上 engine='python'

ratings = pd.read_table('data\ml-1m\\ratings.dat',sep='::',header=None,names=rnames,engine='python')

posted @ 2017-01-24 14:59  Kimbo  阅读(1891)  评论(0编辑  收藏  举报