The knitr tag has no wiki summary.
3
votes
2answers
69 views
Colorize/highlight values of R ftable() output in knitr/Sweave rapports
I am generating a lot of ftable() crosstabulations for a descriptive report. Example:
AUS BEL BUL EST FRA GEO GER HUN ITA NET NOR ROM RUS
30- primary 0.06 0.03 0.07 0.03 ...
3
votes
1answer
70 views
translate plotmath latex
I started using the awesome knitr package, and whilst I love the idea of using tikz graphics, it's not always very practical (time consuming). Thus, I end up switching back and forth between the good ...
3
votes
4answers
271 views
Run Sweave or knitr with objects from existing R session
Suppose I have an object x in my current session:
x <- 1
How can I use this object in an Sweave or knitr document, without having to assign it explicitly:
\documentclass{article}
...
2
votes
2answers
104 views
figure* environment in twocolumn knitr/Sweave document
Sounds like it should be a common problem, but I didn't find an obvious trick.
Consider the knitr Rnw file below,
\documentclass[twocolumn, 12pt]{article}
\usepackage{graphicx}
\begin{document}
...
1
vote
1answer
104 views
knitr: child document in different directory
I can use the following code for child document if it is in the same directory.
<<child-demo, child=knitr-input-child.Rnw, eval=TRUE>>=
@
I wonder how to use child document if it is not ...