I am trying to plot a map with south up using the packages ggplot2 and sf.
I tried the functions coord_flip and scale_y_reverse, but I was not successful.
The base code I am using is:
library(tidyverse)
library(sf)
library(rnaturalearth)
library(rnaturalearthhires)
BRA <- ne_states(country = "Brazil",
returnclass = "sf")
ggplot(BRA) +
geom_sf(fill = "white") +
coord_sf()
Thank you in advance.

You could try an inverted Mercator projection: