I am trying to find the intersect of three dataframes, however the pd.intersect1d does not like to use three dataframes.
pd.intersect1d
import numpy as np imp
You can using concat
concat
pd.concat([df1.head(1),df2.head(1),df3.head(1)],join='inner').columns Out[81]: Index(['C', 'D'], dtype='object')