Skip to content
Advertisement

Get distinct values within time chunks

I have a table with different species and their occurences (timestamp) from field survey:

Now I want to count them, not in total but in chunks of 10 minutes each, where only the first occurence is counted. That means between 12:31 and 12:40 there are species A,B,C. Between 12:41 and 12:50 there are species B,C.

For a single 10 minute chunk I can do something like

But what I need is something like:

My timestamp has no seconds. That’s the reason why it is x1 to x0 minutes. How can I do the math in SQLite or should I better use Python pandas for that?

Advertisement

Answer

Use datetime function strftime() to produce the chunks:

See the demo.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement