简体   繁体   中英

Title for each subplot is cutoff in R

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)

在此处输入图片说明

Try par(xpd=NA) : from ?par ,

'xpd' A logical value or 'NA'. If 'FALSE', all plotting is clipped to the plot region, if 'TRUE', all plotting is clipped to the figure region, and if 'NA', all plotting is clipped to the device region. See also 'clip'.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM