I have the following pandas data frame and I only want to keep rows that time = 0.1, 0.2, 0.3, 0.4 ... (every 0.1 second)
I tried to use the floor function like below, but it doesn't work with pandas:
Any suggestions on how to achieve this? Thanks!