Re: [O] Output of R babel blocks with quotes is mangled/truncated

2012-07-08 Thread cberry
Viktor Rosenfeld listuse...@googlemail.com writes:

 Hi,

 if a value outputted by R in a Babel block contains quotes only the
 quoted parted is exported.


Try 

#+begin_src R  :results verbatim
q = 'cat=S'
q

#+end_src

 Consider this:

 #+BEGIN_SRC R
 q = 'cat=S'
 q
 #+END_SRC

 #+RESULTS:
 : S

 The expected result would be entire string, i.e. 'cat=S' (without
 single quotes). Is there a workaround? I've tried escaping with
 backslashes to no avail.

 Cheers,
 Viktor



-- 
Charles C. BerryDept of Family/Preventive Medicine
cberry at ucsd edu  UC San Diego
http://famprevmed.ucsd.edu/faculty/cberry/  La Jolla, San Diego 92093-0901




Re: [O] Output of R babel blocks with quotes is mangled/truncated

2012-07-08 Thread Viktor Rosenfeld
Hi Charles,
cbe...@tajo.ucsd.edu wrote:

 Viktor Rosenfeld listuse...@googlemail.com writes:
 
  Hi,
 
  if a value outputted by R in a Babel block contains quotes only the
  quoted parted is exported.
 
 
 Try 
 
 #+begin_src R  :results verbatim
 q = 'cat=S'
 q
 
 #+end_src

This is not a solution since I want to output vectors or data frames
from R as a table.

E.g. the following should return a table, but verbatim returns a quoted
block which I cannot use further in my processing:

#+NAME: quote-mangling
#+BEGIN_SRC R
q = c('cat=S', 'pos=VVFIN')
q
#+END_SRC

I also tried an extra newline at the end, but it makes no difference.

Cheers,
Viktor

 
  Consider this:
 
  #+BEGIN_SRC R
  q = 'cat=S'
  q
  #+END_SRC
 
  #+RESULTS:
  : S
 
  The expected result would be entire string, i.e. 'cat=S' (without
  single quotes). Is there a workaround? I've tried escaping with
  backslashes to no avail.
 
  Cheers,
  Viktor
 
 
 
 -- 
 Charles C. BerryDept of Family/Preventive Medicine
 cberry at ucsd eduUC San Diego
 http://famprevmed.ucsd.edu/faculty/cberry/  La Jolla, San Diego 92093-0901