Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用以下方法在 R 中制作一个空图:
plot.new()
这将创建一个具有默认宽度和高度的空白图。
我想创建一个高度最小的空图。我试过png('z.png', height=1)了,但这让我:
png('z.png', height=1)
> png('x.png', height=1) > plot.new() Error in plot.new() : figure margins too large
我怎样才能创建这样的情节?我想我也必须将边距归零。
嗯......我不知道你为什么要这样做,但这里是:
# 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()