gpt4 book ai didi

r - 在R中的文件路径中使用变量

转载 作者:行者123 更新时间:2023-12-02 15:27:21 25 4
gpt4 key购买 nike

在 bash 中我可以做:

BLA=some/directory 然后

MyFavoriteFile1=/some/path/to/$BLA/myfile1.someextension
MyFavoriteFile2=/some/path/to/$BLA/myfile2.someextension

我想知道 R 中是否存在同样的情况?这样我就只需要在整个脚本中更改一次 BLA

最佳答案

使用file.path:

dir <- file.path("some", "path")
bla <- file.path("some", "directory")
files <- c("file1.R", "file2.exe")

file.path(dir, bla, files)

产生:

[1] "some/path/some/directory/file1.R"   "some/path/some/directory/file2.exe"

您也可以使用 paste 来一般地连接字符串,但是 file.path 确保为您的操作系统等使用正确的目录分隔符。

关于r - 在R中的文件路径中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29680328/

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