我有一个很大的 csv 文件,我把它分成了六个单独的文件。我正在使用“for 循环”来读取每个文件并创建一个列,其中的值递增 1。
whole_file=['100Hz1-raw.csv','100Hz2-raw.csv','100Hz3-raw.csv','100Hz4-raw.csv','100Hz5-raw.csv','100Hz6-raw.csv']
first_file=True
for piece in whole_file:
if not first_file:
skip_row = [0] # if it is not the first csv file then skip the header row (row 0) of that file
else:
skip_row = []
V_raw = pd.read_csv(piece)
V_raw['centiseconds'] = np.arange(len(V_raw)) #label each centisecond
有没有一种聪明的方法来做我想做的事。
森栏
RISEBY
相关分类