R语言基础绘图之边距参数

边距参数

Reference:
https://www.r-bloggers.com/setting-graph-margins-in-r-using-the-par-function-and-lots-of-cow-milk/
https://stackoverflow.com/questions/12415206/par-options-pin-and-oma-in-r

边距相关参数有两个mai(mar)omi(oma),分别表示内边界【包括轴标题和主标题】和外边界【与窗口边框之间空白区域】,如下图所示:

mex

mex is a character size expansion factor which is used to describe coordinates in the margins of plots. Note that this does not change the font size, rather specifies the size of font (as a multiple of csi) used to convert between mar and mai, and between oma and omi.

This starts as 1 when the device is opened, and is reset when the layout is changed (alongside resetting cex).

相当于每一段字符的行高,mar、oma都以mex作为距离单位,默认值为1,为0.2 inches。

mai

A numerical vector of the form c(bottom, left, top, right) which gives the margin size specified in inches.

表示绘图区域周围的内边界宽度,其单位为英寸【1英寸=2.54厘米】,默认设置为

par("mai")
## [1] 1.02 0.82 0.82 0.42

mar

A numerical vector of the form c(bottom, left, top, right) which gives the number of lines of margin to be specified on the four sides of the plot. The default is c(5, 4, 4, 2) + 0.1.

除单位为number of lines of text【即文字的行高,mex】外,其余与mai相同,因此默认行高(mex)为0.2 inches:

par("mai")/par("mar")
## [1] 0.2 0.2 0.2 0.2

可以由以下代码进行验证mar的默认值

plot(1:10, ann=FALSE, type="n", xaxt="n", yaxt="n")
# mtext 默认为outer=FALSE即在内边界注释文本,line参数表示与图像区域的距离(行高)
for(j in 1:4) for(i in 0:10) mtext(as.character(i), side=j, line=i, outer=FALSE)
unnamed-chunk-3-1.png
par("mar")
## [1] 5.1 4.1 4.1 2.1

内边界的应用

当出现轴标题与轴标注发生重叠时,可以手动设置mar来解决

x <- 1:10
y <- seq(0.01, 100, length=10)*10000
plot(y~x, las=1, type="b", xlab="Year",  ylab="Total Milk Production (in pounds?)")

解决方案,使用mgp=c(5,1,0)把轴标题设置距离图形区域5,轴标签设置为1,轴本身为0,单位为行高【默认mgp=c(3, 1, 0)】

par(mar=c(5,6,4,2)+0.1,mgp=c(5,1,0))
x <- 1:10
y <- seq(0.01, 100, length=10)*10000
plot(y~x, las=1, type="b", xlab="Year",  ylab="Total Milk Production (in pounds?)")

此时细心的你可能发现了,x轴的标题不见了,因为mgp的设置是针对所有的轴的,不仅仅是改变y轴,而x轴的默认内边界为5个行高,正好把x轴标题挡在了外面。

我们可能会想到把mpg改为c(4,1,0),但是这样的话,x轴的标题距离x轴标签太远了,图形不太协调,因此可以加上mtext("Year", side=1, line=2, adj=0.5)命令在x轴手动加上标题

par(mar=c(5,6,4,2)+0.1,mgp=c(5,1,0))
x <- 1:10
y <- seq(0.01, 100, length=10)*10000
plot(y~x, las=1, type="b", xlab="Year",  ylab="Total Milk Production (in pounds?)")
mtext("Year", side=1, line=2, adj=0.5)

omi

A vector of the form c(bottom, left, top, right) giving the size of the outer margins in inches.

表示绘图区域周围的外边界宽度outer margins in inches,其单位为英寸【1英寸=2.54厘米】,默认设置为

par("omi")
## [1] 0 0 0 0

oma

A vector of the form c(bottom, left, top, right) giving the size of the outer margins in lines of text.

除单位为number of lines of text【即文字的行高,mex】外,其余与omi相同,默认值为0

omd

A vector of the form c(x1, x2, y1, y2) giving the region inside outer margins in NDC (= normalized device coordinates), i.e., as a fraction (in [0, 1]) of the device region.

除单位为normalized device coordinates【NDC,即占设备长或宽的多少倍,值在0-1之间】外,其余与omi相同

外边界宽度的应用

如下代码中,mtext添加的大标题超出了内边界

par(mar=c(5,7,4,2)+0.1)
x <- 1:10
y <- seq(0.01, 100, length=10)*10000
plot(y~x, las=1, type="b", xlab="Year",  ylab="", main="Milk Production")
mtext("Total Milk Production (in pounds?)", side=2, line=5, adj=0.5)

mtext("Milk Plots",side=3,line=-1,cex=2,outer=TRUE) 

解决方法,设置上缘外边界为2即可

par(mar=c(5,7,4,2)+0.1, oma=c(0, 0, 2, 0))
x <- 1:10
y <- seq(0.01, 100, length=10)*10000
plot(y~x, las=1, type="b", xlab="Year",  ylab="", main="Milk Production")
mtext("Total Milk Production (in pounds?)", side=2, line=5, adj=0.5)

mtext("Total Milk Production Plots",side=3,line=-1,cex=2,outer=TRUE, adj=0.65) 

最后

这图总结了一切,来自http://www.springer.com/us/book/9783319497501

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容