所以我使用R studio(版本1.0.143)并使用tk_choose.files
library(tcltk)
df <- read.xlsx2(tk_choose.files(caption = "Choose File"),
sheetIndex = 1,
startRow=4,stringsAsFactors = FALSE)
从Windows文件夹中选择我的文件后,一切都按预期工作。但是,在我们的五秒钟内,现在我的控制台中出现了换行符。我该如何防止这种情况?
谢谢!