gpt4 book ai didi

r - pair() 函数中的外边距

转载 作者:行者123 更新时间:2023-12-04 12:32:07 25 4
gpt4 key购买 nike

我的 pairs() 外面有太多空白阴谋。如何控制 pairs() 中的外边距阴谋?

oma例如什么都不做(即 par(oma=c(0,0,0,0)) 没有区别)。

最佳答案

tl;博士 使用 oma作为您的 pairs() 中的一个论点称呼。

像往常一样,这一切都在文档中,尽管有些晦涩。 ?pairs状态:

Also, graphical parameters can be given as can arguments to ‘plot’ such as ‘main’. ‘par("oma")’ will be set appropriately unless specified.



这意味着 pairs()尝试在内部做一些聪明的事情来设置外边距(基于是否请求 main 标题);它将忽略外部 par("oma")设置,只关注内部设置。 stats:::pairs.default 代码中的“违规”行是:
  if (is.null(oma)) 
oma <- c(4, 4, if (!is.null(main)) 6 else 4, 4)

从而设置 oma在通话中确实有效:
par(bg="lightblue")  ## so we can see the plot region ...
z <- matrix(rnorm(300),ncol=3)
pairs(z,oma=c(0,0,0,0))

enter image description here

关于r - pair() 函数中的外边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33895907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com