merge a column from one dataframe to another python given an id code example
Example: combine column in csv python pandas
df['period'] = df[['Year', 'quarter', ...]].agg('-'.join, axis=1)
df['period'] = df[['Year', 'quarter', ...]].agg('-'.join, axis=1)