I have 2 dataframes with only 1 column. How can I only find a difference between these 2?
df_1 = [ a,b,c,e,g,t,u]
df_2 = [c,e,f,a,b,r]
The result should be like this
df_result = [g,t,u,f,r]
I have 2 dataframes with only 1 column. How can I only find a difference between these 2?
df_1 = [ a,b,c,e,g,t,u]
df_2 = [c,e,f,a,b,r]
The result should be like this
df_result = [g,t,u,f,r]