Just relevel the factors yourself in the data frame.
library(finalfit)
library(dplyr)
library(ggplot2)
# OR plot
data(colon_s)
# edited version
colon_s_edit <- colon_s %>%
mutate(sex.factor = factor(sex.factor, levels = c("Male", "Female"))) %>%
mutate(age.factor = factor(age.factor, levels = c("60+ years", "40-59 years", "< 40 years")))
explanatory = c("age.factor", "sex.factor", "obstruct.factor", "perfor.factor")
dependent = "mort_5yr"
colon_s_edit %>%
or_plot(dependent, explanatory)
You could also use fct_revel() in forcats to do it as well.