I am working with 13548 continuous values, my data is constructed on the following way:
s = pd.Series(delta, index=st)
s[:10]
GEOM_190_190 0.00
GEOM_190_192 1.91
GEOM_190_194 2.54
GEOM_190_196 4.90
GEOM_190_198 6.03
GEOM_190_200 6.92
GEOM_190_202 8.60
GEOM_190_204 10.06
GEOM_190_206 11.34
GEOM_190_208 12.43
dtype: float64
I apply the following filters:
extra = [i for i in s if i<52.55]
extra2 = [i for i in s if i>61 and i<68]
extra3 = [i for i in s if i>73]
I would like to know the indexes of those values. Is there a better way to do it?
Thanks!