我正在尝试加载txt文件,但出现以下错误:内存不足

时间:2019-06-23 15:49:32

标签: python python-3.x pandas

我的代码:

from pandas import read_csv

ds = read_csv('hpc.txt', sep=';', header=0, low_memory=False, infer_datetime_format=True, parse_dates={'datetime':[0,1]}, index_col=['datetime'])
print(ds.shape)
print(ds.head())

hp.txt 的快照:

enter image description here

该代码用于输出文件的形状,但不是。

0 个答案:

没有答案