Trying to show a running total of something and I end up with this graph that it split in half? The data seems to be correct if I mouse over.
I’m using
SELECT created_at as time, sum(count(*)) OVER (ORDER BY created_at)
FROM table
GROUP BY created_at;