I have a chr vector like this:
t<-c("lucas","2","3","luciano","1","5","jack","1","luciana","2","3","4","5")
Lucas,2,3 would be the same client. Luciano,1,5 would be a different one and so on.
I created two vectors, where i define the limits of each client.
start<-c(1,4,7,9)
end<-c(3,6,8,13)
I need to map them in a column list. So I have one column for each client. And if i would click it, i would open each clients matrix.
In this case, I imagine one columnlist, with three rows. If i would click Lucas's list i would have
Lucas 2 3
And Luciana
Luciana 2 3 4 5
There is any way i can do this with map?