參考 【Day 24】的資料,今天要畫每一種作物的實際交易量總和。
Plot.plot({
marks: [
Plot.barX(produce1, Plot.groupY({x: "sum"}, {x: "交易量", y: "作物名稱", sort: {y: "x", reverse: true, limit: 10}})),
Plot.ruleX([0])
]
})
Plot.plot({
marginLeft: 100,
width: 600,
height: 400,
x: {
label: "作物交易量",
domain: [0, 100000]
},
y: {
label: null
},
marks: [
Plot.barX(produce1, Plot.groupY({x: "sum"}, {x: "交易量", y: "作物名稱", sort: {y: "x", reverse: true, limit: 10}, fill: "作物名稱"})),
Plot.ruleX([0])
]
})
Weighted bar chart 會加總同一種作物在不同市場的實際交易量