I've made a foresplot in r using the metafor package with the following code:
res <- metafor::rma(cohens_d, variance, data = my_data)
par(mar=c(3.4,0,0,0))
par(cex=2.5, font=4)
metafor::forest.rma(res, alim=c(-3.75, 3.75), xlab = "Cohen's D with 95% CI",
slab = my_data$Paper)
which gives me the image:

I'd like to flip the x axis, meaning have the negative on the right. Any ideas on how to do this?
Thank you!