I\'m trying to use it to manipulate data in large txt-files.
I have a txt-file with more than 2000 columns, and about a third of these have a title which contains th
You can use pandas filter function to select few columns based on regex
data_filtered = data.filter(regex='net')