in reply to Statistics::R question

q doesn't interpolate. You wanted qq instead or "..." like you used in the end.

Also, I would shy away from using backticks as your separator as that can be confused with qx.

my $file = '/usr/local/projects/file'; $R->send(qq{a<-read.table("$file")});

Replies are listed 'Best First'.
Re^2: Statistics::R question
by david_lyon (Sexton) on Apr 08, 2011 at 00:34 UTC
    Thanks for your help wind, very useful, I will be using that from now onwards