-1
をggplot course_name,id,total_enrolled,total_capacity
は)私のデータフレームが呼び出される
私がやった:
d3a <- head(d3[order(d3$total_capacity, decreasing = T),], 15)
d3.plottable <- d3a[, c(1,3,4)]
d3.plottable <- melt(d3.plottable, id.vars = "course_name")
library(ggplot2)
g <- ggplot(d3.plottable, aes(x = course_name, y = value))
g + geom_bar(aes(fill = variable), position = position_dodge(), stat = "identity") +
coord_flip() + theme(legend.position = "top")
g <- g + labs(x = "Course Name")
g <- g+ labs(y = "Number of Students")
g
私が何をしても、降順でオレンジバーを並べ替えることはできません。 これを行う方法はありますか?変数total_enrolledをソートしたいと思います。
PS:ひどくフォーマットされたコードをお詫びします、私はまだstackoverflowを考え出しています。
この: https://stackoverflow.com/questions/3253641/change-the-order-of-a-discrete-x-scale – Art