@braxx Thanks for the question. To filter only the columns you are interested in, you can use the pandas dataframe method "df.filter()". This method takes a list of column names as input and returns a new dataframe with only the specified columns.
For example, to filter only the columns "Month", "Branch", and "_automl_target_col" from the dataframe "df", you can use the following code:
# filter only the columns you are interested in
df = df.filter(['Month', 'Branch', '_automl_target_col'])
Alternatively, you can also use the "df.loc[]" method to select specific columns by their names. This method takes a list of column names as input and returns a new dataframe with only the specified columns.
For example, to filter only the columns "Month", "Branch", and "_automl_target_col" from the dataframe "df", you can use the following code:
# filter only the columns you are interested in
df = df.loc[:, ['Month', 'Branch', '_automl_target_col']]
Both methods will return a new dataframe with only the specified columns, and the original dataframe will remain unchanged. You can then use this new dataframe for further analysis or modeling.