The following code returns a vector of 12 letters:
> res <- "ACDEDEAEDCED"
> res <- strsplit(res,"", FALSE)
> View(res[4])
Error in .subset2(x, i, exact = exact) : índice fora de limites
More when I try to access a position and specify it gives error. I've tried it in many ways. Among them res [1,4], res [ 4] ....