Go to file
Matti Pastell 6b65075f0d Coverage to travis 2014-12-06 19:51:00 +02:00
examples Improved markdown reader 2014-12-06 16:40:50 +02:00
src Added tests, fix to markdown parsing 2014-12-06 19:16:45 +02:00
test Added tests, fix to markdown parsing 2014-12-06 19:16:45 +02:00
.gitignore Coverage to travis 2014-12-06 19:51:00 +02:00
.travis.yml Coverage to travis 2014-12-06 19:51:00 +02:00
LICENSE.md JuliaReport.jl generated files. 2014-11-25 00:08:25 +02:00
README.md Improved markdown reader 2014-12-06 16:40:50 +02:00
REQUIRE Initial Gadfly support 2014-12-03 23:34:29 +02:00

README.md

JuliaReport

Build Status

JuliaReport is a scientific report generator/literate programming tool for Julia. It resembles Pweave and, Knitr and Sweave.

Current features

  • Noweb syntax for documents.
  • Execute code as terminal or "script" chunks.
  • Capture PyPlot, Gadfly or Winston figures.
  • Supports latex and pandoc markdown output

Not implemented

  • Script reader
  • Inline code
  • Caching

Chunk options

I've tried to follow Knitr's naming for chunk options, but not all options are implemented. You can see src/config.jl for the current situation.

Options are separated using ";" and need to be valid Julia expressions. e.g.

<<term=true; fig_width=6; fig_height=4>>=

File formats

You can get a list of supported output formats:

julia> list_out_formats()
pandoc: Pandoc markdown
rst: reStructuredText and Sphinx
texminted: Latex using minted for highlighting
github: Github markdown
tex: Latex with custom code environments

Usage

Run from julia:

using JuliaReport
weave(Pkg.dir("JuliaReport","examples","julia_sample.mdw")

Using Winston for plots (Julia 0.3 only):

weave(Pkg.dir("JuliaReport","examples","winston_sample.mdw"),
plotlib="Winston", doctype="pandoc")

Using Gadfly (Julia 0.3 only):

weave(Pkg.dir("JuliaReport","examples","gadfly_sample.mdw"), plotlib="Gadfly")

The signature of weave functions is:

function weave(source ; doctype = "pandoc",
    plotlib="PyPlot", informat="noweb", fig_path = "figures", fig_ext = nothing)

Note: Run JuliaReport from terminal and not using IJulia, Juno or ESS, they tend to mess with capturing output.

Contributing

I will probably add new features to JuliaReport when I need them myself or if they are requested and not too difficult to implement. You can contribute by opening issues on Github or implementing things yourself and making a pull request. I'd also appreciate example documents written using JuliaReport to add to examples.

Contributors

Douglas Bates has contributed a number of important fixes and comments.