I have a problem. i want to delete some rows from the large data set. The problem is I have data of every 30 sec but I only want to go up to per minute. So, I want to remove the rows which have 30 sec init. for better understanding, I am attaching an example with the expected outcome that I want.
time value
2021-11-04 05:57:00 0.0
2021-11-04 05:57:30 0.0
2021-11-04 05:58:00 0.0
2021-11-04 05:58:30 0.0
2021-11-04 05:59:00 0.0
2021-11-04 05:59:30 0.0
2021-11-04 06:00:00 0.0
2021-11-04 06:00:30 0.0
2021-11-04 06:01:00 0.0
2021-11-04 06:01:30 0.0
2021-11-04 06:02:00 0.0
2021-11-04 06:02:30 0.0
2021-11-04 06:03:00 0.0
2021-11-04 06:03:30 0.0
2021-11-04 06:04:00 0.0
2021-11-04 06:04:30 0.0
2021-11-04 06:05:00 0.0
2021-11-04 06:05:30 0.0
2021-11-04 06:06:00 0.0
2021-11-04 06:06:30 0.0
2021-11-04 06:07:00 0.0
2021-11-04 06:07:30 0.0
what I want to be like that
time value
2021-11-04 05:57:00 0.0
2021-11-04 05:58:00 0.0
2021-11-04 05:59:00 0.0
2021-11-04 06:00:00 0.0
2021-11-04 06:01:00 0.0
2021-11-04 06:02:00 0.0
2021-11-04 06:03:00 0.0
2021-11-04 06:04:00 0.0
2021-11-04 06:05:00 0.0
2021-11-04 06:06:00 0.0
2021-11-04 06:07:00 0.0
every row with 30 sec init should be deleted from the data set.