为什么会抛出错误:RStudio中找不到函数selectFile?
install.packages("rstudioapi")
library(rstudioapi)
file_name = rstudioapi::selectFile(caption = "Select File", label = "Select", path = NULL,filter = NULL, existing = TRUE)
答案 0 :(得分:2)
在?selectFile
页上
selectFile和selectDirectory函数是在RStudio的1.1.287版本中添加的。
因此,如果您使用的是RStudio: Version 1.0.136
,则这些功能将不起作用。您需要将RStudio更新到新版本。