Using plot in R causes the factors on the x-axis to be alphabetically ordered.
plot
How can I specify the order of the factors on the x-axis?
Examp
You just need to specify the levels of your factor in the order you want. So here I create a new variable x1
x1
x1 = factor(x, levels=c("B", "C", "A"))
where
R> x1 [1] B B B A A A C C C Levels: B C A
The plot function now works as expected.
plot(y ~ x1)