R中是否有东西可以打开文本文件?在Python中,可以open a text file using notepad:
extension String{
init(contentsOfURL: NSURL, encoding: NSUTF8StringEncoding, inout error: NSError){
// load data from url
self = //parse data to string
}
}
其他方法也在帖子中描述。 R中有类似的东西吗?
答案 0 :(得分:3)
记住可移植性问题,即这是特定于Windows的,您可以使用shell.exec
,默认情况下,该文件将在与该类型文件关联的任何程序中打开文件 - 例如
## full path
shell.exec(paste0(c(getwd(), "/tmpfile.txt"),collapse = ""))
## relative to current working directory
shell.exec("tmpfile.txt")
在我的机器上的记事本中打开tmpfile.txt
。