gpt4 book ai didi

r - 从 R 代码访问 R 历史记录

转载 作者:行者123 更新时间:2023-12-02 00:01:46 24 4
gpt4 key购买 nike

我知道历史功能可以在单独的面板中显示 R 历史记录供用户查看。我感兴趣的是略有不同。我希望能够从 R 代码本身访问 R 历史记录,我可以在其中请求最后 n 个命令并返回包含这些命令的向量。有没有这样的东西?

最佳答案

tempfile <- tempfile(pattern="rhistory_", fileext=".txt")
savehistory(tempfile)
h <- readLines(tempfile)

tail(h, 5) # display last 5 commands
eval(parse(text=h[length(h)-1])) # exec last command but 1

关于r - 从 R 代码访问 R 历史记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20959561/

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