這裏是集: https://www.dropbox.com/s/mrlfnh6e2ww1xwd/home.csv?dl=0BARCHART重新安排使用ggplot不能正常工作
這裏是我的代碼:
hom <- read.csv(file.choose(),header=TRUE)
home.melt <- melt(hom, id.vars='home')
ggplot(home.melt,
aes(x = reorder(home, value), y = value,
fill=forcats::fct_rev(variable))) +
geom_bar(stat = "identity",width = 0.8) + coord_flip() +
theme_minimal(base_size=10) +
labs(title="Home time",
subtitle="By matches",
x="Home",
y="time (minutes)",
fill=" ")
這裏是輸出:
,你可以看到它沒有下降的順序。
重新排序軸或填充? – PoGibas
雲存儲鏈接不鼓勵,因爲它們會隨着時間的推移而崩潰。 –
根據總時間對條進行重新排序。 'St'應該在頂部,然後'Ln'等。 – user709413