Re: [Rd] source and textConnection

2009-10-23 Thread Duncan Murdoch
On 10/23/2009 8:27 AM, Duncan Murdoch wrote: On 10/22/2009 7:21 AM, Erich Neuwirth wrote: Using todays freshly downloaded compiled version of R-2.10.0 beta let me pose this question once again: myconn<-textConnection("print(11*11)") source(myconn) produces [1] 121 Warning message: In source(

Re: [Rd] source and textConnection

2009-10-23 Thread Duncan Murdoch
On 10/22/2009 7:21 AM, Erich Neuwirth wrote: Using todays freshly downloaded compiled version of R-2.10.0 beta let me pose this question once again: myconn<-textConnection("print(11*11)") source(myconn) produces [1] 121 Warning message: In source(myconn) : argument 'encoding = "native.enc"' w

Re: [Rd] source and textConnection

2009-10-22 Thread Duncan Murdoch
On 10/22/2009 7:21 AM, Erich Neuwirth wrote: Using todays freshly downloaded compiled version of R-2.10.0 beta let me pose this question once again: myconn<-textConnection("print(11*11)") source(myconn) produces [1] 121 Warning message: In source(myconn) : argument 'encoding = "native.enc"' w

Re: [Rd] source and textConnection

2009-10-22 Thread Erich Neuwirth
Using todays freshly downloaded compiled version of R-2.10.0 beta let me pose this question once again: >> myconn<-textConnection("print(11*11)") >> source(myconn) produces > [1] 121 > Warning message: > In source(myconn) : argument 'encoding = "native.enc"' will be ignored So I get a warning abo

[Rd] source and textConnection

2009-10-19 Thread Erich Neuwirth
Is this warning given on purpose? > myconn<-textConnection("print(11*11)") > source(myconn) [1] 121 Warning message: In source(myconn) : argument 'encoding = "native.enc"' will be ignored Could it be omitted, since the docs state that encoding is only use if the corresponding argument is a file