You can subset a part of a large list of files in R by using the numbers in the filenames as follows:
489 chars17 lines
In this example, we extract the numbers from the filenames using a regular expression [[:digit:]]
and subset the files based on a condition (in this case, numbers greater than 3). You can adjust the condition based on your requirements.
gistlibby LogSnag