How do I manually fit a viewport with a fixed aspect ratio into its parent such that no space is wasted like ggplot can do?
我有一个视口,它必须具有固定的纵横比,因为它在其原生坐标系中的 x 和 y 单位之间的距离必须相等。
我想将此视口调整到父视口中,以便它可以最大程度地缩放,但保持其纵横比。
使用网格单元”snpc”,我能够保持纵横比,尽管我无法达到最大程度。请参阅下面的代码,它打印出我到目前为止以四种不同的设备纵横比归档的内容。
虽然感兴趣的视口(灰色和网格)在设备宽度较小时填充了最大可用区域,但如果设备宽度变得如此之大以至于设备高度成为视口大小的限制因素,则该方法会失败。视口没有覆盖整个可能的高度。我希望感兴趣的视口覆盖最右边图中的整个设备高度。
编辑:我发现 ggplot 可以做到这一点,并更新了我的示例以显示这一点。注意ggplot如何触摸最右边图像的上下设备边框和最左边图像的左右边框,为什么我的自制解决方案即使有空间也不会触摸最右边图像的上下设备边框.但是,我不能使用 ggplot,因为我想包含一个仅使用网格构建的自定义绘图,但它依赖于原生 x 和 y 坐标系上的相等距离??。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# — Helper functions ——————————————————
# Draw something (inside fun) for different paper sizes # — Own attempt ———————————————————– # Coordinate system annot <- function(name){ forDifferentSizes( paste0(‘X’,letters[1:4]), seq(100, 500, length.out = 4), 250 pushViewport( # — ggplot2 can do it —————————————————– library(ggplot2) forDifferentSizes(paste0(‘G’,letters[1:4]), seq(100, 500, length.out = 4), 250 # — Make the output images for post (imagemagick required) ————— |
- 您将 vp1 设置为每边的间距为 2cm。在所示示例中,vp2 很好地填充了 vp1。 vp2 不能大于 vp1,因为它位于 vp2 内部。你希望这如何工作?
- @aocall 图片与代码不匹配。即使没有视口 vp1,该行为仍然存在。我现在更正了(删除了视口 vp1)。我很抱歉造成混乱
- 我不知道 snpc 是否可行。如文档中所述,snpc”使用 npc-width 和 npc-height 中的较小者”。因此,由于 npc-height 小于 npc-width,它使用 npc-height 来计算视口大小。
- @aocall你是绝对正确的。不幸的是,’snpc’ 是迄今为止我可以在网格中找到的唯一一种机制来制作具有固定纵横比的视口……所以 ggplot 以一种我迄今为止无法找到的非常聪明的方式使用这种机制,或者另一个我不知道的。
ggplot2 使用具有空单位的网格布局和 respect 参数来强制纵横比。这是一个例子,
1
2 3 4 5 6 7 |
library(grid)
ar <- (1+sqrt(5))/2 |
user9169915 做到了!惊人的!我在这里以程序网格样式发布他的解决方案,以供参考。另外,我添加了等距坐标系。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
ar <- (1+sqrt(5))/2 # aspect ratio
# Native coordinate system of the target viewport: make x and y equidistant xrange <- c(0,5) yrange <- xrange/arN forDifferentSizes( paste0(‘L’,letters[1:4]), seq(100, 500, length.out = 4), 250 gl <- grid.layout(1,1,widths=unit(1,”null”), height=unit(1/ar,”null”), respect = TRUE) }) |
来源:https://www.codenong.com/47721895/