Skip to content
Advertisement

While merging 100+ CSV files, how to fill nan in a column if it doesn’t exist in “usecol”?

Considering that I have CSV files which looks roughly like this

JavaScript

I am using the following script which was suggested here

JavaScript

Most of the files have all three columns, while few of them do not have ColC. This will give an error (understandably) which is as follows:

ValueError: Usecols do not match columns, columns expected but not found: ['ColC']

How can I put nan in ColC while keep columns list unchanged?

Advertisement

Answer

Here is one alternative checking the columns beforehand:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement