2

我可以使用以下方法在 R 中制作一个空图:

plot.new()

这将创建一个具有默认宽度和高度的空白图。

我想创建一个高度最小的空图。我试过png('z.png', height=1)了,但这让我:

> png('x.png', height=1)
> plot.new()
Error in plot.new() : figure margins too large

我怎样才能创建这样的情节?我想我也必须将边距归零。

4

1 回答 1

3

嗯......我不知道你为什么要这样做,但这里是:

# Make a png file
png('x.png', height=1)

# Change the margins of the plot to 0 on each side
par(mar=rep(0,4))

# Make an empty plot
plot.new()

# Close the connection to the png file
dev.off()
于 2013-08-23T17:37:33.217 回答