Displaying 1 result from an estimated 1 matches for "name_rep".
Did you mean:
name_ret
2012 Apr 01
1
Selecting files with a particular string in filename
.... Next, I
need to select some files from this list of 70 files. The files to be
selected do have a unique "pattern" in their file name. However, I cannot
use list.files function because it looks for a specific path. Any help is
appreciated.
Thanks in advance.
- Kumar
for (i in 1:100) {
name_rep = paste("rep_",i,"_",sep="")
files <- list.files(path="C:\\Users\\Binn\\Desktop\\script_output",
pattern= name_rep, full.names=TRUE )
natfiles <- list.files(path=files, pattern= "_natrain.csv", full.names=TRUE
)
<OPERATIONS HERE>
}
-...