Was it helpful?

Question

How to change the order of bars in bar chart in R?

R ProgrammingServer Side ProgrammingProgramming

This can be done by setting the levels of the variable in the order we want.

Example

> data <- data.frame(Class=c("Highschool","Highschool","Graduate","Graduate",
"Graduate","Graduate","Masters","Masters","Masters","PhD"))

Setting the levels in decreasing order

> data <- within(data,
Class <- factor(Class,
levels=names(sort(table(Class),
decreasing=TRUE))))
> library(ggplot2)
> ggplot(data, aes(x = Class)) + geom_bar()

Setting the levels in increasing order

> data <- within(data,
Class <- factor(Class,
levels=names(sort(table(Class),
decreasing=TRUE))))
> ggplot(data, aes(x = Class)) + geom_bar()

raja
Published on 06-Jul-2020 17:50:23
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top