gpt4 book ai didi

r - 如何摆脱边距

转载 作者:行者123 更新时间:2023-12-03 21:30:03 25 4
gpt4 key购买 nike

我指定了绘图的宽度、高度和分辨率,然后删除了下面代码中的边距,并绘制了一个绘图。

但我仍然有利润空间。无论是否使用 par,我都得到了相同的情节命令。上传的图片从 7000*5000 缩小到 1400*1000,减少到 2MB 以下。

enter image description here

library(scatterplot3d)

parwd = 7000
parht = 5000
parres = 1000

par(oma = c(0,0,0,0), mar = c(0,0,0,0))

jpeg(filename="CC_1_fo.jpg", width = parwd, height = parht, res = parres)
scatterplot3d(1:10, 1:10, 1:10,
cex.symbol = 0.2,
xlab = expression(T[1]),
ylab = expression(T[2]),
zlab = expression(tau))
dev.off()

我怎样才能真正去除边距?

最佳答案

我想 3D 绘图有点时髦,还有一些 par参数不能按预期工作。具体来说,如果你想用 mar 设置边距您必须使用实际 mar参数在 scatterplot3d .

这在帮助说明 ( ?scatterplot3d ) 中有说明:

Some graphical parameters should only be set as arguments in scatterplot3d but not in a previous par() call. One of these is mar (...)



使用:
scatterplot3d(1:10, 1:10, 1:10,
cex.symbol = 0.2,
xlab = expression(T[1]),
ylab = expression(T[2]),
zlab = expression(tau),
mar = c(0,0,0,0))

将导致没有边距的情节:

enter image description here

不过,将边距设置为零会切断您的刻度标签。

关于r - 如何摆脱边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38584177/

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