[Rd] discussion of change in R 3.3.0 to [<-

2016-05-17 Thread Richard Morey
In the NEWS for R 3.3.0 is this change: * [<- with an S4 value into a list currently embeds the S4 object into its own list such that the end result is roughly equivalent to using [[<-. That behavior is deprecated. In the future, the S4 value will be coerced to a list with

[Rd] passing "..." arguments to a function called by eval()

2009-05-26 Thread Richard Morey
Hi everyone, I am starting learn to call C code from within R. So far, I've been trying toy problems to see if I can get them to work. One of the things I'd like to do is pass an arbitrary R function to C, evaluate the value in the C code using eval, and then return it. I also want to allow an

Re: [Rd] passing "..." arguments to a function called by eval()

2009-05-27 Thread Richard Morey
y function and you don't have to pass it to .Call. Richard Duncan Murdoch wrote: On 26/05/2009 5:13 PM, Richard Morey wrote: Hi everyone, I am starting learn to call C code from within R. So far, I've been trying toy problems to see if I can get them to work. One of the things I

[Rd] Changing text in a tkentry widget

2009-07-09 Thread Richard Morey
was to change the content of the tkentry widget. But, as you can see by running this code, changing the Name variable using assign does not change the content of the widget. Is there a function to update the content? tkinsert didn't seem to work when I tried it. Thanks, Richard Mor