I am preforming a filter on columns containing tweet_volume using regex, by the following command:
tweet_volume_df = df_merged.filter(regex=("tweet_volume.*"))
Within df_merged there is a column for name. I would like to include columns name in tweet_volume_df.
How do I perform this operation in a single line?