Skip to content

Instantly share code, notes, and snippets.

@rasmusab
Created October 13, 2024 11:22
Show Gist options
  • Save rasmusab/681e19640fe489a9137eca50f4ff39c0 to your computer and use it in GitHub Desktop.
Save rasmusab/681e19640fe489a9137eca50f4ff39c0 to your computer and use it in GitHub Desktop.
"Hello world" in R Sweave
\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