append columns to dataframe pandas code example

Example 1: add rows to dataframe pandas

df = df.append({'a':1, 'b':2}, ignore_index=True)

Example 2: how to add a column to a pandas df

#using the insert function:
df.insert(location, column_name, list_of_values) 
#example
df.insert(0, 'new_column', ['a','b','c'])
#explanation:
#put "new_column" as first column of the dataframe
#and puts 'a','b' and 'c' as values

#using array-like access:
df['new_column_name'] = value

#df stands for dataframe

Example 3: append one row to pandas dataframe

df = df.append({'index1': value1, 'index2':value2,...}, ignore_index=True)

Example 4: python push to dataframe pandas

df = pd.DataFrame({
    'a':[1,2,3],
    'b':[5,6,7]
})

df2 = pd.DataFrame({
    'a':[11,12,13],
    'b':[15,16,17]
})

df = df.append(df2, ignore_index = True )

print(df)

Example 5: append one column pandas dataframe

df1 = df1.join(df2[column])

Example 6: add column to df from another df

# pre 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].values
# >= 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].to_numpy()

Tags:

R Example