gpt4 book ai didi

graphics - 如何更改当前绘图窗口大小(在 R 中)

转载 作者:行者123 更新时间:2023-12-02 13:46:39 25 4
gpt4 key购买 nike

例如。假设我这样做:

dev.new(width=5, height=4)
plot(1:20)

现在我想做

plot(1:40)

但我想要一个更大的窗口。

我猜想这样做的方法是(假设我不想打开新窗口)

plot(1:40, width=10, height=4)

这当然行不通。

我认为唯一的解决方案是关闭窗口并启动一个新窗口。 (这将结束我的阴谋历史)

有更好的方法吗?

谢谢。

最佳答案

一些解决方法可能不是使用 dev.new() R 函数,而是使用这个应该跨平台工作的函数:

 dev.new <- function(width = 7, height = 7) 
{ platform <- sessionInfo()$platform if (grepl("linux",platform))
{ x11(width=width, height=height) }
else if (grepl("pc",platform))
{ windows(width=width, height=height) }
else if (grepl("apple", platform))
{ quartz(width=width, height=height) } }

关于graphics - 如何更改当前绘图窗口大小(在 R 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2367328/

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