Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 147 Bytes

pandas_slice.md

File metadata and controls

7 lines (7 loc) · 147 Bytes

Intersection

Finding the intersection between two series in Pandas

idx1=ser1.index
idx2=ser2.index
inter=idx1.intersection(idx2)