Dear all,
I am trying to find the index (row number) of specific row that I am conditioning from a large dataset (33000 rows x 9 columns). The columns of the dataset are date(year, month, day) & time(hour, min, sec) & GPS (lat, long, alt). Is there an easy and quick way to search and find a specific (conditioned) row i.e. I would like to condition year, month, day, hour, min and sec? I tried findall() but it didnt work out since it is not able to condition multiple columns. Any help will be appreciated.
I tried:
findall((x,y)-> x==2019 in raw_ch_harvest[:,1] , y==5 in raw_ch_harvest[:,2])
also tried
[(raw_ch_harvest[:,1] .== 2019) & (raw_ch_harvest[:,2] .== 5) & (raw_ch_harvest[:,3] .== 17)]
Thanks