I have an array a and a column of my dataframe df[:Column1].
Is it possible with the function “occursin” (or another one) to know if the elements of a are into df[:Column1] without making a loop “for i in a” ? Is there a way to broadcast occursin ?
(This won’t be particularly fast, if that’s a problem)
There’s one of the functions of findall family that returns the index and the value of the elements, and could be used. But I don’t remember which one.