I have 20 .CSV files and all of them have equal number of row/col (1 row and 42 columns). I want to make a dataframe out of all them and have each CSV file as one row of my dataframe and have the name of the CSV file as my row name. Is it even possible to do this?
To illustrate this with an example:
A.csv
10 21 32 45
B.csv
33 45 93 90
C.csv
12 93 Na 21
Resulting dataframe I am looking for would be:
A 10 21 32 45
B 33 45 93 90
C 12 93 Na 21