RE: [R] [BASIC] Solution of creating a sequence of object names

2004-12-01 Thread John
Thanks a lot, Adai. I am sure that your tip is very useful for those who are not familiar with 'list'. What is good for using this kind of help list is that you can learn 'additional' info and tips from 'kind' users, which you don't usually expect by reading basic documentations. They are by no

[R] [BASIC] Solution of creating a sequence of object names

2004-11-29 Thread John
Dear R-users, I state that this is for beginners, so you may ignore this in order not to be irritated. By the way, patience is another important thing, together with kindness, we should keep in mind when we teach students and our own children as Jim Lemon pointed out well in the context of the

RE: [R] [BASIC] Solution of creating a sequence of object names

2004-11-29 Thread bogdan romocea
You may be missing something. After you create all those objects, you'll want to use them. Use get(): for (i in 1:10) ... get(paste(object,i,sep=)) ... It took me about a week to find out how to do this. I waited for a few days, but before I got to ask this basic/rtfm question, someone else -

RE: [R] [BASIC] Solution of creating a sequence of object names

2004-11-29 Thread John
It was enough for me to use the 'assign' function alone. But I'll remember the 'get' function for future reference. Thanks a lot for the note. John --- bogdan romocea [EMAIL PROTECTED] wrote: You may be missing something. After you create all those objects, you'll want to use them. Use