> dput(head(t))
structure(list(Team = structure(c(1L, 1L, 1L, 1L, 1L, 1L), .Label = \"Union\", class = \"factor\"),
Date = structure(c(1L, 1L, 1L, 2L, 2L, 2L
Do you mean something like this (results='asis')?
\documentclass[11pt]{article}
\begin{document}
<<setup, echo = FALSE, results= 'hide', message = FALSE>>=
data(mtcars)
library(ggplot2)
qplot(speed, dist, data = cars) + geom_smooth()
@
<<results='asis'>>=
require(stargazer)
stargazer(mtcars, summary = FALSE)
@
\end{document}