Trying to create vertical bar chart that shows Count of Jobs based on Hours of each Job?
Hello,
I am trying to create a distribution that shows the count of transactions ("jobs") grouped into buckets of hours. I thought using a window function to partition the hours buckets by Job (X-axis) and then doing a count(distinct) of jobs as the Y-axis would work, but it's not grouping correctly. When I set the Hours Buckets as just the total sum of hours without the partition, it puts all data into the largest bar. Which makes sense, since the total hours across all the data will be in the largest bucket. I tried adding a partition with the unique transaction to the buckets formula, but it doesn't aggregate correctly and shows the same bucket labels repeated many times.
case
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 50 then '0-50'
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 100 then '50-100'
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 150 then '100-150'
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 200 then '150-200'
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 250 then '200-250'
when sum(Total_Hours_Worked
) over(partition by DIV_Order_Num
) < 300 then '250-300'
else '>300' end
Best Answer
-
It's having multiples of the same buckets because likely you're using another field in your sort or chart that doesn't appear in your FIXED function. Also you'll need to aggregate yout aggregate as @marcel_luthi points out.
If you had some anonymized data for us to work with, that would be helpful.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0
Answers
-
This sounds like a good option to use a Histogram (if you don't need that much granular control over the partitions). If you need custom partitions, I'd strongly advise doing a View of your dataset that already aggregates the total time at the DIV_OrderNum level and then graph based on this with a simple ETL to bucket them. If you can't or really don't want to for some reason, I'd use FIXED instead of OVER, something like:
CASE WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'a)0-50' WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'b)50-100' WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'c)100-150' WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'd)150-200' WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'e)200-250' WHEN SUM(SUM(`Total_Hours_Worked`) FIXED(BY `DIV_Order_Num`)) <50 THEN 'f)250-300' ELSE 'g)>300' END
Then make sure your card is set to sorted by this new field only and that the what will show is a
COUNT(DISTINCT `DIV_Order_Num`)
Again I'd preferred to go with a GroupBy view of the table that aggregates things at the
DIV_Order_Num
instead, to make calculations simpler for anyone that might take a look at this later.1 -
Thanks Marcel!
If I could use a dataflow or view to pre-aggregate by Div_Order_Num, I think this card would be very easy to build. Unfortunately, the person who requested it wants the ability to filter the data by individual labor activity types within each Order (Mechanical, Engineering, Painting, etc.)
This means that the card needs to be build on the granular data instead of total hours by Order_Num.
I tried using FIXED(BY instead of OVER (PARTITION BY) but it yielded the same result. Instead of aggregating every Order_Num that falls into each bucket into a stacked bar, it creates a separate bar for each Order_Num. In this example, you can see that Order #'s 184282 and 185161 both have hours in the 0-50 bucket, but instead of one bar with a count of 2 it creates 2 bars with counts of 1 each.
0 -
CASE
WHEN Total_Hours_Worked >= 0 AND Total_Hours_Worked < 50 THEN '0-50'
WHEN Total_Hours_Worked >= 50 AND Total_Hours_Worked < 100 THEN '50-100'
WHEN Total_Hours_Worked >= 100 AND Total_Hours_Worked < 150 THEN '100-150'
WHEN Total_Hours_Worked >= 150 AND Total_Hours_Worked < 200 THEN '150-200'
WHEN Total_Hours_Worked >= 200 AND Total_Hours_Worked < 250 THEN '200-250'
WHEN Total_Hours_Worked >= 250 AND Total_Hours_Worked < 300 THEN '250-300'
ELSE '>300'
END** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
100% agree with @marcel_luthi, this would be a great thing to add to a dataflow. Do a group by by Job, add it back to the job as a "Job Total" hours and then you could even add in the classification to the job level as well. Well worth it to spend 30 seconds in a dataflow vs. trying to create a crazy beast mode.
1 -
It's having multiples of the same buckets because likely you're using another field in your sort or chart that doesn't appear in your FIXED function. Also you'll need to aggregate yout aggregate as @marcel_luthi points out.
If you had some anonymized data for us to work with, that would be helpful.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 737 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive