combine dataframes pandas code example
Example 1: combining 2 dataframes pandas
df_3 = pd.concat([df_1, df_2])
Example 2: concat dataframe from list of dataframe
import pandas as pd
df = pd.concat(list_of_dataframes)
Example 3: combine two dataframe in pandas
vertical_stack = pd.concat([survey_sub, survey_sub_last10], axis=0)
horizontal_stack = pd.concat([survey_sub, survey_sub_last10], axis=1)
Example 4: Joins with another DataFrame
df.join(df2, df.name == df2.name, 'outer').select(
df.name, df2.height).collect()
df.join(df2, 'name', 'outer').select('name', 'height').collect()
cond = [df.name == df3.name, df.age == df3.age]
df.join(df3, cond, 'outer').select(df.name, df3.age).collect()
df.join(df2, 'name').select(df.name, df2.height).collect()
df.join(df4, ['name', 'age']).select(df.name, df.age).collect()
Example 5: merge dataframe pandas
>>> df1.merge(df2, left_on='lkey', right_on='rkey')
lkey value_x rkey value_y
0 foo 1 foo 5
1 foo 1 foo 8
2 foo 5 foo 5
3 foo 5 foo 8
4 bar 2 bar 6
5 baz 3 baz 7
Example 6: merge two df
bigdata = pd.concat([data1, data2], ignore_index=True, sort=False)