Skip to content

Commit

Permalink
Update by_year_manufacturer_line_chart
Browse files Browse the repository at this point in the history
  • Loading branch information
carlineng authored Nov 5, 2024
1 parent 93a1e40 commit cdcdb3c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion auto_recalls/auto_recalls.malloy
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ source: recalls is duckdb.table('auto_recalls.csv') extend {
}
-> {
where: top_manufacturers.Manufacturer = x.Manufacturer
group_by: x.recall_year, x.recall_count, x.Manufacturer,
# x
group_by: x.recall_year
# y
group_by: x.recall_count
# series
group_by: x.Manufacturer
limit: 100000
order_by: 1, 3
}
Expand Down

0 comments on commit cdcdb3c

Please sign in to comment.