I created the following violin plot by appending different plots and with this lines:
windows()
mat<-(matrix(1:3,ncol=3))
layout(mat,widths = rep.int(1, ncol(mat)),heights = rep.int(1,nrow(mat)),respect =F)
layout.show(n = 3)
par(mar=c(4, 0.2, 2, 0.2), oma=c(0, 7, 0, 0.5))
Now I would like to add a line to the Y-axis like the one you can see in the X-axis in the following figure:
As you can see this line in the X-axis adds information about the continent where the samples came from.
How can I add this info to the Y-axis of my plot? Do I need to provide with more code? Thanks!