Created
October 13, 2024 11:22
-
-
Save rasmusab/681e19640fe489a9137eca50f4ff39c0 to your computer and use it in GitHub Desktop.
"Hello world" in R Sweave
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
<<echo=FALSE,results=tex>>= | |
cat('\\section{hi}\n') | |
@ | |
<<echo=FALSE>>= | |
library(xtable) | |
@ | |
Hello World | |
<<fig=TRUE>>= | |
plot(iris) | |
@ | |
Here is a regression. | |
<<>>= | |
model <- lm(Sepal.Length~Sepal.Width, data=iris) | |
slope <- model$coefficients['Sepal.Width'] | |
model | |
@ | |
The slope is \Sexpr{slope}. | |
Here is a graph. | |
<<fig=TRUE>>= | |
plot(model) | |
@ | |
Here is a table | |
<<results=tex>>= | |
xtable(model) | |
@ | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment