forked from yihui/knitr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
112 lines (112 loc) · 4.21 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
Package: knitr
Type: Package
Title: A general-purpose package for dynamic report generation in R
Version: 1.1.3
Date: 2013-02-16
Authors@R: c(person("Hadley", "Wickham", role = "ctb"),
person("Ramnath", "Vaidyanathan", role = "ctb"),
person("Joseph J.", "Allaire", role = "ctb"),
person("Tom", "Torsney-Weir", role = "ctb"),
person("Jonathan", "Keane", role = "ctb"),
person("Joe", "Cheng", role = "ctb"),
person("Jeff", "Arnold", role = "ctb"),
person("Kohske", "Takahashi", role = "ctb"),
person("Taiyun", "Wei", role = "ctb"),
person("Alex", "Zvoleff", role = "ctb"),
person("Cassio", "Pereira", role = "ctb"),
person("Wush", "Wu", role = "ctb"),
person("Simon", "de Bernard", role = "ctb"),
person("Michel", "Kuhlmann", role = "ctb"),
person("Alastair", "Andrew", role = "ctb"),
person("Jim", "Hester", role = "ctb"),
person("Nacho", "Caballero", role = "ctb"),
person("Heewon", "Jeon", role = "ctb"),
person("Brian", "Diggs", role = "ctb"),
person("Jeremy", "Stephens", role = "ctb"),
person("Yihui", "Xie", email = "[email protected]", role = c("aut", "cre")))
Author: Yihui Xie
Maintainer: Yihui Xie <[email protected]>
Description: This package provides a general-purpose tool for dynamic report
generation in R, which can be used to deal with any type of (plain text)
files, including Sweave, HTML, Markdown and reStructuredText. The patterns
of code chunks and inline R expressions can be customized. R code is
evaluated as if it were copied and pasted in an R terminal thanks to the
evaluate package (e.g. we do not need to explicitly print() plots from
ggplot2 or lattice). R code can be reformatted by the formatR package so
that long lines are automatically wrapped, with indent and spaces being
added, and comments being preserved. A simple caching mechanism is provided
to cache results from computations for the first time and the computations
will be skipped the next time. Almost all common graphics devices,
including those in base R and add-on packages like Cairo, cairoDevice and
tikzDevice, are built-in with this package and it is straightforward to
switch between devices without writing any special functions. The width and
height as well as alignment of plots in the output document can be
specified in chunk options (the size of plots for graphics devices is still
supported as usual). Multiple plots can be recorded in a single code chunk,
and it is also allowed to rearrange plots to the end of a chunk or just
keep the last plot. Warnings, messages and errors are written in the output
document by default (can be turned off). Currently LaTeX, HTML, Markdown
and reST are supported, and other output formats can be supported by hook
functions. The large collection of hooks in this package makes it possible
for the user to control almost everything in the R code input and output.
Hooks can be used either to format the output or to run a specified R code
fragment before or after a code chunk. The language in code chunks is not
restricted to R only (there is simple support to Python and Awk, etc). Many
features are borrowed from or inspired by Sweave, cacheSweave, pgfSweave,
brew and decumar.
Depends:
R (>= 2.14.1)
Imports:
evaluate (>= 0.4.3),
digest,
formatR (>= 0.3-4),
markdown (>= 0.4),
stringr (>= 0.6),
tools
Suggests:
testthat,
rgl,
codetools,
R2SWF (>= 0.4),
XML,
RCurl,
Rcpp (>= 0.10.0)
License: GPL
URL: http://yihui.name/knitr/
BugReports: https://github.com/yihui/knitr/issues
VignetteBuilder: knitr
Collate:
'package.R'
'utils-upload.R'
'plot.R'
'defaults.R'
'parser.R'
'cache.R'
'pattern.R'
'output.R'
'block.R'
'hooks.R'
'utils.R'
'themes.R'
'highlight-css.R'
'highlight-renderer.R'
'header.R'
'themes-eclipse.R'
'concordance.R'
'engine.R'
'citation.R'
'hooks-chunk.R'
'hooks-extra.R'
'hooks-latex.R'
'hooks-html.R'
'hooks-md.R'
'hooks-rst.R'
'spin.R'
'highlight.R'
'utils-base64.R'
'utils-rd2html.R'
'zzz.R'
'template.R'
'utils-sweave.R'
'utils-conversion.R'
'utils-vignettes.R'