[R] updating a helper function in a R package

2007-12-06 Thread Tao Shi
Hi list, Sorry for the vague title, but here is the scenario. I’m writing an R package, let’s say, ‘pkg1’, which contains 3 functions: f1, f2, f3. f2 and f3 are helper functions for f1, i.e. f1 calls f2 which in turn calls f3. f1 - function(…) { …. f2() … } f2 -

Re: [R] updating a helper function in a R package

2007-12-06 Thread Gabor Grothendieck
If you are using namespaces see: ?assignInNamespace On Dec 6, 2007 5:38 PM, Tao Shi [EMAIL PROTECTED] wrote: Hi list, Sorry for the vague title, but here is the scenario. I'm writing an R package, let's say, 'pkg1', which contains 3 functions: f1, f2, f3. f2 and f3 are helper functions