I have a list of files containing output from a large model. I load these as a datatable using:
files <- list.files(path.expand("/XYZ/"), pattern = ".*\\.rds", full.names = TRUE)
dt<- as.data.table(files)
This datatable "dt" has just 1 column, the file name. e.g XZY_00_34234.rds
the 50th and 51st character of each file name is a number. I want to create a datatable containing that 2 digit number for each file.
I used:
index <- as.data.table(as.integer(substr(dt,50,51)))
This gives me the correct value for the first file. I think I should be able to use apply to run this against each row of the file
I tried:
integers <- as.data.table(apply(dt,1,as.integer(substr(50,51))))
But get:
Error in substr(50, 51) : argument "stop" is missing, with no default
Any suggestions gratefully accepted!
Try:
The
apply
family of functions accept other functions and executes them over vectors and arrays. These functions are some times already defined, but an interesting feature was added toapply
functions, you can write the function right there at the line for the first time. This saves time and keystrokes.A narrower programming setup would require your function to first be written like:
Next, that function could then be passed to the
apply
function.But look how we were able to do those two steps in one.