I have two dataframes:
df1 =
Header: Class , Grade
English , A
df2 =
Header: Class , Teacher
English, Smith
Chinese, Yert
What I need is to overlay a new column entry if there is a match, and if no match, append it to the end such that the output is:
Header: Class, Grade, Teacher
English, A, Smith
Chinese, NaN, Yert
Thank you in advance.