I want to create a barplot in R. However, I would like to re-arrange the variables on the x-axis, not by frequency but by \'meaning\'.
Imagine I have the following
We can use factor with levels specified
factor
levels
plot(factor(df$Radio, levels=c("C", "E", "B", "A", "D", "F")))