Can someone please help me explain this R code?
I am beginner and I want to understand what recursive and full.names does.
df <- list.files(
path = "path/to/files",
recursive = TRUE,
pattern = "\\.csv$",
开发者_如何学Python full.names = TRUE
)
I already read the R documentation but I still don't fully understand what it does. I expect someone can help me explain the code with easy to understand example if can.
thank you
精彩评论