Displaying 3 results from an estimated 3 matches for "begin_exampl".
Did you mean:
begin_example
2019 Aug 06
1
Wiki edit: HowTos/Grub2
...subject of your Wiki contribution(s): Corrected path for
getting menu entries
The proposed location of your Wiki contribution(s): In
<https://wiki.centos.org/HowTos/Grub2>, in section 2 titled "2. How to
Define the Default Entries", in the first code block, the command given
is:
#+BEGIN_EXAMPLE
awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg
#+END_EXAMPLE
I propose it should be the following:
#+BEGIN_EXAMPLE
awk -F\' '$1=="menuentry "{print i++ " : " $2}' /boot/grub2/grub.cfg
#+END_EXAMPLE
Thanks for the h...
2015 Oct 01
0
BUG: emacs orgmode ob-R.el function org-babel-R-evaluate-session over aggressively performs "; ; cleanup extra prompts left in output" and a possible workaround
...elpa org-20150929 the reg-expt used to "cleanup extra prompts left in output" is over-aggressive and will trim session :output at lines consisting exclusively of blanks and periods such as produced when printing a BioConductor 'Views' object which wants to appear as
#+RESULTS:
#+begin_example
Views on a 23011544-letter DNAString subject
subject: CGACAATGCACGACAGAGGAAGCAGAACAGATATTTAGATTGCCTCTCATTTTCTCTCCCATATTATAGGGAGAAATATGATCGCGTATGCGAGAGTAGTGCCAACATATTGTGCTCTTTGATTTTTTGGCAACCCAAAATGGTGGCGGATGAACGAGATGATAATATATTCAAGTTGCCGCTAATCAGAAATAAATTCATTGCAACGTTAAATACAGCACAATATATGATCGCGTATGCGA...
2010 Oct 15
0
nomianl response model
...n place an R source
code block further down in the same file, and it can read in the data in
the table. Then you can go back to the table to edit, then rerun R, ...
I append an example below.
There is a load of tutorial info at
http://orgmode.org/worg/org-tutorials/index.php
HTH,
Chuck
#+begin_example
#+tblname: simpleDF
| a | b | c |
|---+---+---|
| 1 | 2 | 3 |
| 5 | 4 | 2 |
|---+---+---|
#+end_example
#+begin_src R :var df=simpleDF :results output :colnames yes
summary( df )
#+end_src
#+results:
: a b c
: Min. :1 Min. :2.0 Min. :2.00
: 1st Qu.:...