i have a large dataframe that looks like this:
df <- data.frame(wealth = c(low, med, high), income = c(50000, 100000, 150000))
when I code a ggplot and enter wealth as an x or y variable, it lists high first since it is alphabetical.
how can I manual change the order that it lists the wealth variable in ggplot to low, med, high?