Answers for "how to merge multiple csv files into one using shell script"

2

merge multiple csv files

path = r'C:DRODCL_rawdata_files' # use your path
all_files = glob.glob(path + "/*.csv")

li = []

for filename in all_files:
    df = pd.read_csv(filename, index_col=None, header=0)
    li.append(df)

frame = pd.concat(li, axis=0, ignore_index=True)
Posted by: Guest on August-05-2021

Code answers related to "how to merge multiple csv files into one using shell script"

Python Answers by Framework

Browse Popular Code Answers by Language