Despite my using the oma parameter in R, the title for each subplot is cutoff, is there some other parameter that can be used to display properly?
op <- par(mfrow = c(3,3),
oma = c(0,0,2,0) + 0.1,
mar = c(0,0,1,1) + 0.1)
Despite my using the oma parameter in R, the title for each subplot is cutoff, is there some other parameter that can be used to display properly?
op <- par(mfrow = c(3,3),
oma = c(0,0,2,0) + 0.1,
mar = c(0,0,1,1) + 0.1)
Copyright © 2021 Jogjafile Inc.
Try
par(xpd=NA)
: from?par
,