Re: [R] expression evaluation during recursion

2015-10-22 Thread david . kaethner
> You seem to have ignored my explanation. True, sorry. Thanks for sticking with me. Making sense now. > > Duncan Murdoch > >> >> >>> Am 22.10.2015 um 19:05 schrieb Duncan Murdoch >> >: >>> >>> On 22/10/2015 10:20 AM,david.kaeth...@gmail.com >>>

Re: [R] expression evaluation during recursion

2015-10-22 Thread Duncan Murdoch
On 22/10/2015 2:44 PM, david.kaeth...@gmail.com wrote: Hi, I’m sure there’s a ton I don’t understand about environments, but I’m afraid your answer doesn’t make sense to me. If it’s on the search path, the „print(env)“ should yield something like: You never get to the search list. attr(,

Re: [R] expression evaluation during recursion

2015-10-22 Thread david . kaethner
Hi, I’m sure there’s a ton I don’t understand about environments, but I’m afraid your answer doesn’t make sense to me. If it’s on the search path, the „print(env)“ should yield something like: attr(,"name") [1] "package:pryr" attr(,"path") [1] "/Library/Frameworks/R.framework/Versions/3.2/Res

Re: [R] expression evaluation during recursion

2015-10-22 Thread Duncan Murdoch
On 22/10/2015 10:20 AM, david.kaeth...@gmail.com wrote: > Hello, > > I’m trying to solve an exercise, where I want to walk through the search path > recursively (http://adv-r.had.co.nz/Environments.html > ). > > I’m puzzled by a certain behavior and ho