Re: [R] Creating multiple vector/list names-novice

2011-04-05 Thread michalseneca
Thanks I already found out solution :) -- View this message in context: http://r.789695.n4.nabble.com/Creating-multiple-vector-list-names-novice-tp3425616p3428617.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org

Re: [R] Creating multiple vector/list names-novice

2011-04-05 Thread Uwe Ligges
On 05.04.2011 09:07, michalseneca wrote: The exact would be for example that I shoul be able then to choose "a" from "abc". and I cannot do that. The is rather unhelpful for helpers without quoting what your original question and the answers were. Uwe Ligges -- View this message in conte

Re: [R] Creating multiple vector/list names-novice

2011-04-05 Thread michalseneca
The exact would be for example that I shoul be able then to choose "a" from "abc". and I cannot do that. -- View this message in context: http://r.789695.n4.nabble.com/Creating-multiple-vector-list-names-novice-tp3425616p3427283.html Sent from the R help mailing list archive at Nabble.com. _

Re: [R] Creating multiple vector/list names-novice

2011-04-04 Thread michalseneca
Hi Thanks ,however I would need something different still... I would need to return a vector so if as to choose cc[[3]] [2] would return vector/list as in terms of c(b,d,e) Thanks -- View this message in context: http://r.789695.n4.nabble.com/Creating-multiple-vector-list-names-novic

Re: [R] Creating multiple vector/list names-novice

2011-04-04 Thread Henrique Dallazuanna
Try this: lapply(2:3, FUN = combn, x = string, paste, collapse = '') On Mon, Apr 4, 2011 at 11:24 AM, michalseneca wrote: > Hi I have very simple issue as I am still new to the group of R > > I have basically > > vector of names for which i want to create mutliple combinations and then > place

[R] Creating multiple vector/list names-novice

2011-04-04 Thread michalseneca
Hi I have very simple issue as I am still new to the group of R I have basically vector of names for which i want to create mutliple combinations and then place them in different vectors. In some other language I can just place a third dimension to separate list (or matrix) but i do not know ho