There is a CSV file with a lot of columns. I want to extract the columns with the text "People Sensible Heating Rate" and export it to a csv file named "People Sensible Heating Rate" using PANDAS. [closed]
There is a CSV file with a lot of columns. I want to extract the columns with the text "People Sensible Heating Rate" and export it to a csv file named "People Sensible Heating Rate" using PANDAS.
I'm closing this question.
Be careful not to fall into a "please do my homework" type of situation, nor to confuse unmet hours with Stack Overflow. Here this is purely a Python/Pandas situation and has nothing to do with energy modeling specifically. There are many similar questions on Stack overflow, such as this one
To answer your question quickly though: you can use
df.filter(like='People Sensible Heating Rate')
.haha okay. Thank you.