[R] assignment operator - does not work in a function...

2011-10-31 Thread Levent TERLEMEZ
Dear Users, I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried on both 2.13.1 and 2.13.2) as below using arules and arulseViz packages:

Re: [R] assignment operator - does not work in a function...

2011-10-31 Thread R. Michael Weylandt
It's a matter of environments: your function makes veri for purposes of the function but then throws it away when the function is done. If you want it to be accessible you need to assign it to the global environment with something like assign(veri,

Re: [R] assignment operator - does not work in a function...

2011-10-31 Thread Mehmet Suzen
-project.org Subject: [R] assignment operator - does not work in a function... Dear Users, I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried

Re: [R] assignment operator - does not work in a function...

2011-10-31 Thread Bert Gunter
operator - does not work in a function... Dear Users, I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried on both 2.13.1 and 2.13.2