https://github.com/ab4377/dream-project
Raw File
Tip revision: 8e64d9628355fde264b6481f9955478fed995fe5 authored by Avinash Bukkittu on 04 October 2017, 22:20:26 UTC
Merge branch 'master' of https://github.com/ab4377/dream-project
Tip revision: 8e64d96
SaveRecordList.py
import pandas as pd
import os

base_path = "/ifs/home/c2b2/ip_lab/shares/DATA/fwd_bwd_data/converted_fb_accel_data"
recordIds = os.listdir(base_path)
recordIds_df = pd.DataFrame(data=recordIds,columns=["columns"])
recordIds_df.to_csv("recordIdList.csv",index=True,header=True)
back to top