Can't read in a large Excel file using read_csv
- python error that file doesn't exist.
Smaller versions of same excel file open easily.
import pandas as pd
data = pd.read_csv("E:\rawdata_50K.csv")
print(data[0:5])
Top 20 lines of excel file load perfectly; the large version does not.