Trying to select subset of df based on the occurrence of an element in an array in the df.
df = pd.DataFrame()
vals = []
for i in range(3):
vals.append(np.linspace(0,1,i+1))
df['vals']=vals
df.isin({'vals':[0.5]})
returns TypeError: unhashable type: 'numpy.ndarray'
Other options for df selection like this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…