Objective: to fill in one dataframe with another using transpose
df = pd.DataFrame({'Attributes': ['love', 'family','tech']})
df.T
Produces this output:
0 1 2
Attributes love family tech
Secondarily, I have another dataframe that is empty:
data = pd.DataFrame(columns = ['Attribute_01',
'Attribute_02',
'Attribute_03']
I would like to bring the two dataframes together to produce the following:
Attribute_01 Attribute_02 Attribute_03
love family tech