search for: rweaveasciidoc

Displaying 6 results from an estimated 6 matches for "rweaveasciidoc".

2009 Apr 29
1
RweaveHTML (R2HTML) Help
I have found Sweave() to be great for producing PDF documents. I have been experimenting with RweaveHTML (from the R2HTML) package and have had moderate success. My main issue has been that I simply want the R output to be shown verbatim in the HTML document but RweaveHTML tends to convert most output to a table, for example. So, is there a way to force the RweaveHTML driver to simply provide
2009 Apr 05
0
New package: ascii version 0.1
Hi, ascii is a new R package for writing asciidoc or txt2tags document with embeded R commands. It provides: - a generic method for common R objects: ascii(). Default argument depends of R object. - two Sweave drivers: Sweave("yourfile.Rnw", RweaveAsciidoc) or Sweave("yourfile.Rnw", RweaveT2t). This package is very similar to xtable or R2HTML. It is very interesting if you want to produce multiple output from one source. You could find some examples on http://eusebe.github.com/ascii/. Comments and suggestions are welcome ! Best, David...
2009 Apr 05
0
New package: ascii version 0.1
Hi, ascii is a new R package for writing asciidoc or txt2tags document with embeded R commands. It provides: - a generic method for common R objects: ascii(). Default argument depends of R object. - two Sweave drivers: Sweave("yourfile.Rnw", RweaveAsciidoc) or Sweave("yourfile.Rnw", RweaveT2t). This package is very similar to xtable or R2HTML. It is very interesting if you want to produce multiple output from one source. You could find some examples on http://eusebe.github.com/ascii/. Comments and suggestions are welcome ! Best, David...
2009 Sep 30
3
AsciiDoc and R
I would like to learn AsciiDoc. Is there any good examples how to use AsciiDoc with R? I know that there is packages called ascii to do this, but it would be nice to see some examples how AsciiDoc works with R. Is there an AsciiDoc distribution for Max OS X? -Johannes
2009 Sep 10
2
tranform a table?
hello everyone, i'm new to R, so i hope you dont mind a fairly basic R question. we're using R to manipulate the results of SQL queries and create an HTML output. I'm starting with a table that looks essentially like this: Name Field1 Field2 John value1 value2 Jane value3 value4 My table is stored as a dataframe. I'd like to efficiently produce an
2009 Sep 11
3
For sending my R package as part of R-project
...quot;, "value2"), field2 = c("value3", "value4")) library(reshape) cdf <- cast(melt(df, id = "names"), variable ~ . | names) @ <<results=ascii>>= library(ascii) ascii(cdf$Jane) ascii(cdf$John) @ Then from R, run : Sweave("code.Rnw", RweaveAsciidoc) Finally, use asciidoc <http://www.methods.co.nz/asciidoc/> to convert the new file "code.txt" into html : asciidoc code.txt David On Thu, Sep 10, 2009 at 15:10, bbimber <bimber at wisc.edu> wrote: > > hello everyone, > > i'm new to R, so i hope you dont m...