gpt4 book ai didi

r - R中的可移植空设备

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

有没有一种可移植的方法来获取 R 中的空设备?

目前我正在这样做:

dev.null <- ifelse(.Platform$OS.type == "windows", "NUL:", "/dev/null")

然后我可以例如 sink(dev.null)try(..., outFile = dev.null)

然而,这对我来说似乎不是很可靠。有更好的方法吗?

最佳答案

这个线程很旧,但是是我在谷歌搜索这个主题时发现的第一个线程,所以我认为它可能值得一提 nullfile .

nullfile() returns a character string, which is "/dev/null" except on Windows where it is "nul:"

从 R 版本 3.6.0 开始,此函数在 base 命名空间中可用。否则,您可以在 R.utils 包中找到它

sink(nullfile())
print("I am about to be tossed into the void, irrespective of the OS this is run on")
sink()

关于r - R中的可移植空设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48764060/

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