Public
Edited
Feb 6, 2023
Insert cell
Insert cell
Insert cell
db
select service_id,
cast(count(*) FILTER (WHERE day = 'monday') as integer) as monday,
cast(count(*) FILTER (WHERE day = 'tuesday') as integer) as tuesday,
cast(count(*) FILTER (WHERE day = 'wednesday') as integer) as wednesday,
cast(count(*) FILTER (WHERE day = 'thursday') as integer) as thursday,
cast(count(*) FILTER (WHERE day = 'friday') as integer) as friday,
cast(count(*) FILTER (WHERE day = 'saturday') as integer) as saturday,
cast(count(*) FILTER (WHERE day = 'sunday') as integer) as sunday,
(select min(date) from data_src) as start_date,
(select max(date) from data_src) as end_date,
from (select distinct service_id, lower(dayname(strptime(date, '%Y%m%d'))) as day
from data_src order by 1) group by service_id
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more