在 R 中解析为变量的文件路径
file path parsed to be variable in R
我已将路径分配给变量。
file1 <- "/home/ali/Downloads/data/sample.txt"
我想在系统函数中解析文件路径
var1 <- system("grep -R 'day' file1 | cut -f1", intern=TRUE)
如何解析 file1 变量的值?
使用粘贴连接字符串:
var <- system(paste("grep -R 'day'", file1, "| cut <etc>"), intern = TRUE)
我已将路径分配给变量。
file1 <- "/home/ali/Downloads/data/sample.txt"
我想在系统函数中解析文件路径
var1 <- system("grep -R 'day' file1 | cut -f1", intern=TRUE)
如何解析 file1 变量的值?
使用粘贴连接字符串:
var <- system(paste("grep -R 'day'", file1, "| cut <etc>"), intern = TRUE)