Variable: org-babel-header-args:R

org-babel-header-args:R is a variable defined in ob-R.el.gz.

Value

((width . :any) (height . :any) (bg . :any) (units . :any)
 (pointsize . :any) (antialias . :any) (quality . :any)
 (compression . :any) (res . :any) (type . :any) (family . :any)
 (title . :any) (fonts . :any) (version . :any) (paper . :any)
 (encoding . :any) (pagecentre . :any) (colormodel . :any)
 (useDingbats . :any) (horizontal . :any) (async (yes no))
 (results (file list vector table scalar verbatim)
	  (raw html latex org code pp drawer)
	  (replace silent none append prepend) (output value graphics)))

Documentation

R-specific header arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-R.el.gz
(defconst org-babel-header-args:R
  '((width		 . :any)
    (height		 . :any)
    (bg			 . :any)
    (units		 . :any)
    (pointsize		 . :any)
    (antialias		 . :any)
    (quality		 . :any)
    (compression	 . :any)
    (res		 . :any)
    (type		 . :any)
    (family		 . :any)
    (title		 . :any)
    (fonts		 . :any)
    (version		 . :any)
    (paper		 . :any)
    (encoding		 . :any)
    (pagecentre		 . :any)
    (colormodel		 . :any)
    (useDingbats	 . :any)
    (horizontal		 . :any)
    (async               . ((yes no)))
    (results             . ((file list vector table scalar verbatim)
			    (raw html latex org code pp drawer)
			    (replace silent none append prepend)
			    (output value graphics))))
  "R-specific header arguments.")