I am trying to add an incrementing number to the end of a string and apply this to every row in one column of my dataframe. The column has 76 rows. Ideally I want the output to look like this:
Event Reference Number
FEBRUARY_2019_1
FEBRUARY_2019_2
FEBRUARY_2019_3
I am trying to use apply with a lambda function but am stuck trying to figure out the next step.
df_Trade_File['Event Reference Number'].apply(lambda x: enumerate(df_Trade_File['Event Reference Number']))