I have a list
containing sequences of numbers. I want to create a list
that indicates all non-zero elements up to the first element that matches a defined limit. I also want to create a list
that indicates all non-zero elements after the first element to match the defined limit.
I prefer a base R
solution. Presumably the solution will use lapply
, but I have not been able to come up with a simple solution.
Below is a minimally reproducible example in which the limit is 2:
my.limit <- 2
my.samples <- list(0,c(1,2),0,c(0,1,1),0,0,0,0,0,c(1,1,2,2,3,4),c(0,1,2),0,c(0,0,1,1,2,2,3))
Here are the two desired lists
:
within.limit <- list(0,c(1,1),0,c(0,1,1),0,0,0,0,0,c(1,1,1,0,0,0),c(0,1,1),0,c(0,0,1,1,1,0,0))
outside.limit <- list(0,c(0,0),0,c(0,0,0),0,0,0,0,0,c(0,0,0,1,1,1),c(0,0,0),0,c(0,0,0,0,0,1,1))
We can use
match
withnomatch
argument as a very big number (should be greater than any length of the list, for some reason I couldn't useInf
here.)Checking if output is correct to shown one :