gpt4 book ai didi

r - 如何在R中关闭管道连接之前从管道连接获取输出?

转载 作者:行者123 更新时间:2023-12-04 10:08:16 25 4
gpt4 key购买 nike

在 R 中,我们可以使用 pipe() 打开一个管道连接。并写信给它。我观察到了以下我不太了解的情况。让我们使用 python管道例如:

z = pipe('python', open='w+')

cat('x=1\n', file=z)
cat('print(x)\n', file=z)
cat('print(x+2)\n', file=z)
cat('print(x+2\n', file=z)
cat(')\n', file=z)

close(z)

我期待的是 print() 的输出将立即显示在 R 控制台中,但事实是只有在我关闭管道连接后才会出现输出:
> z = pipe('python', open='w+')
>
> cat('x=1\n', file=z)
> cat('print(x)\n', file=z)
> cat('print(x+2)\n', file=z)
> cat('print(x+2\n', file=z)
> cat(')\n', file=z)
>
> close(z)
1
3
3

所以我的问题是,如何在关闭连接之前获得输出?请注意,似乎无法使用 capture.output() 捕获输出。 , 任何一个:
> z = pipe('python', open='w+')
>
> cat('x=1\n', file=z)
> cat('print(x)\n', file=z)
> cat('print(x+2)\n', file=z)
> cat('print(x+2\n', file=z)
> cat(')\n', file=z)
>
> x = capture.output(close(z))
1
3
3
> x
character(0)

这个问题的背景是 knitr engines .对于像 Python 这样的解释型语言,我希望我可以打开一个持久的“终端”,这样我就可以继续向其中写入代码并从中获取输出。我不确定 pipe()不过,这是正确的方法。

最佳答案

Python 注意到输入不是交互式的,并等到连接关闭以解析和执行代码。您可以使用 -i选项强制它保持交互模式。 (但输出有点困惑)。

z = pipe('python -i', open='w')
cat('x=1\n', file=z)
cat('print(x)\n', file=z)
cat('print(x+2)\n', file=z)
cat('print(x+2\n', file=z)
cat(')\n', file=z)
Sys.sleep(2)
# Python 2.7.4 (default, Apr 19 2013, 18:28:01)
# [GCC 4.7.3] on linux2
# Type "help", "copyright", "credits" or "license" for more information.
# >>> >>> 1
# >>> 3
# >>> ... 3
# >>>
close(z)

您的实际问题更复杂:您需要读取和写入同一个连接。
我不知道如何以可移植的方式做到这一点,但您可以在支持它们的平台上使用管道和命名管道(“fifo”)。
stopifnot( capabilities("fifo") )
system('mkfifo /tmp/Rpython.fifo')
output <- fifo('/tmp/Rpython.fifo', 'r')
input <- pipe('python -i > /tmp/Rpython.fifo', 'w')
python_code <- "
x=1
print(x)
print(x+2)
print(x+2
)
"
cat( python_code, file = input )
flush( input )
Sys.sleep(2) # Wait for the results
result <- readLines(output)
result
# [1] "1" "3" "3"

关于r - 如何在R中关闭管道连接之前从管道连接获取输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17766391/

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