Skip to content
Advertisement

Can I get a sub-DataFrame according to first letter in columns names?

I want to get only columns whose names start with 'Q1' and those starting with 'Q3', I know that this is possible by doing:

JavaScript

But since my real df is too large (more than 70 variables) I search a way to get the new_df by using only desired first letters in the columns titles.

My example dataframe is:

JavaScript

df has the following display:

JavaScript

I want a simpler way to get the following sub-df:

JavaScript

Please if you need more detail let me know in comments,

Any help from your side will be highly appreciated.

Advertisement

Answer

You can use pd.DataFrame.filter for this:

JavaScript
Advertisement