用pandas读取文件时遇到Initializing from file failed这种错误:
一般是因为文件名中带有中文,如下:
f = pd.read_csv('文件.csv')
只需要这样修改即可:
f = open('文件.csv') d = pd.read_csv(f)