[R] Nested source() errors

2006-10-18 Thread Pierce, Ken
Does anyone know of any issues with nesting source() calls within multiple scripts? I have at least one script which always finds errors when I source it but runs fine when run on its own. It containd source() calls to other scripts and it seems to fail during the first nested source() command. K

Re: [R] Nested source() errors

2006-10-19 Thread Dieter Menne
Pierce, Ken oregonstate.edu> writes: > > Does anyone know of any issues with nesting source() calls within > multiple scripts? I have at least one script which always finds errors > when I source it but runs fine when run on its own. It containd source() > calls to other scripts and it seems to

Re: [R] Nested source() errors [Broadcast]

2006-10-18 Thread Liaw, Andy
I've seen people doing that without problem. Not something I'd like to do myself, precisely because when problems occur, it's difficult to figure out what went wrong. Such practice usually indicate that you ought to organize your functions better. (You _are_ writing functions, instead of just sc