I have a string like this:
m<-"abcdabcdbcadacbddabcc..."
I would like to generate a matrix like this:
How can I do that in r?
I have a string like this:
m<-"abcdabcdbcadacbddabcc..."
I would like to generate a matrix like this:
How can I do that in r?
The function gregexpr
gives you the position of each match of the pattern.
You can do this:
a <- c("a","b","c")
b <- matrix(outer(a,a,paste,sep=""),ncol=1)
patterns <- matrix(outer(a,b,paste,sep=""),ncol=1)
m<-"abcdabcdbcadacbddabcc..."
positions <- function(pattern, text)
gregexpr(pattern, text)[[1]][1]
sapply(patterns, positions, text=m)
This gives what I believe you're after:
Output: