gpt4 book ai didi

r - 什么是空图形设备?

转载 作者:行者123 更新时间:2023-12-04 04:18:55 24 4
gpt4 key购买 nike

我正在阅读R?devAskNewPage帮助页面(它是从?par...ask链接的)。我不明白par(ask=F)/par(ask=T)的作用。

为了了解这一点,我需要阅读以下内容:

 If the current device is the null device, this will open a
graphics device.

...

The precise circumstances when the user will be asked to confirm a
new page depend on the graphics subsystem. Obviously this needs
to be an interactive session. In addition ‘recording’ needs to be
in operation, so only when the display list is enabled (see
‘dev.control’) which it usually is only on a screen device.

什么是设备,什么是空设备以及什么是图形子系统?什么是“录音”?我们是在谈论写 png文件和写屏幕之间的区别吗?

这有点像学习什么是标准输出和标准输入。每个人都使用这些词,但是很难找到定义(也很难理解它)。我在Google上搜索了“空图形设备”,但是作为一个新手,顶级结果并没有向我解释我需要知道的内容,以便知道在哪里看。

只要有一些指向适当的入门阅读的链接就足够了。谢谢你。

最佳答案

在R中,device是生成图形图的机制。这可以是屏幕显示(例如windows)或各种文件类型(例如pngpdftiff等)。

有关设备上帮助文件的入口,请参阅?Devices。三个主要操作系统的默认设备是:

  • MS Windows:windows
  • Unix:X11
  • OS X:quartz

  • 空设备表示没有设备处于事件状态。这是一个简短的代码序列,用于查找是否有打开的设备( dev.cur)和关闭它( dev.off)。当我关闭它时,其余设备为空设备。
    > dev.cur()
    windows
    2

    > dev.off(2)
    null device
    1

    > dev.cur()
    null device
    1

    graphics sybsystem 的含义还不清楚。这似乎是所有使用该术语的帮助中的唯一页面。因此,我猜测以下是图形子系统:
  • 基本图形
  • grid图形(以及在顶部构建的任何内容,包括latticeggplot2)
  • 软件包 rgl 中的
  • rgl

  • 关于r - 什么是空图形设备?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8321756/

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