直條圖是常用在統計數量的表示方法,當一筆資料內有許多不同類別,要根據不同類別統計數量,比較類別出現的頻率。
Plot.plot({
marks: [
Plot.barX(produce1, Plot.groupY({x: "count"}, {y: "作物名稱", sort: {y: "x", reverse: true, limit: 10}})),
Plot.ruleX([0])
]
})
Plot.plot({
marginLeft: 100,
width: 600,
height: 400,
y: {
label: null
},
marks: [
Plot.barX(produce1, Plot.groupY({x: "count"}, {y: "作物名稱", sort: {y: "x", reverse: true, limit: 10}, fill: "作物名稱"})), // limit 指定前 10 名
Plot.ruleX([0])
]
})
可以知道前面 10 種作物是出現在最多的市場