Home > Software engineering >  R Base plotting, how to add a bold layer to mtext?
R Base plotting, how to add a bold layer to mtext?

Time:11-30

mtext("Females", outer=TRUE)

I want to make the outer title bold but I am unable to add a bold layer to it. Please help

CodePudding user response:

like this:

x11() 
par(oma = c(0, 0, 2, 0))
plot(1)
mtext("bla", outer = T, font = 2) # font = 2 <- bold
  • Related