I'm sorry, it's because I'm a beginner in R's and I still need help with more basic things.
How could I color each genus with different colors of the y-axis variables? Thanks for the help.
This is my graph:

I used this code:
>data<-read.csv("prof-2col-r.csv",sep=";")
>data
>data$Espécie <- factor(data$Espécie, levels = c("Mycteroperca tigris","Paralabrax nebulifer","Mycteroperca xenarcha","Mycteroperca prionura","Mycteroperca jordani","Epinephelus guttatus","Mycteroperca olfax","Mycteroperca venenosa","Mycteroperca bonaci","Dermatolepis dermatolepis","Alphestes afer","Paralabrax clathratus","Epinephelus striatus","Paranthias colonus","Mycteroperca rosacea","Epinephelus polyphekadion","Epinephelus ongus","Epinephelus marginatus","Epinephelus itajara","Epinephelus fuscoguttatus","Plectropomus maculatus","Plectropomus leopardus","Plectropomus areolatus"))
>ggplot(data, aes(x = Espécie, y = Profundidade)) +
geom_boxplot(outlier.colour="red", outlier.shape=8,
outlier.size=2, notch=FALSE) + coord_flip() + theme_classic() + labs(title = "Epinephelidae", x = "Espécies", y = "Profundidade")