Displaying 1 result from an estimated 1 matches for "ddataframe".
Did you mean:
  dataframe
  
2009 Jun 16
1
overshoot of formula line in summary output of Sweave
...not work universally without altering these functions.
Here is a toy example that illustrates the overshoot of the formula
\documentclass[12pt]{article}
\usepackage{geometry}
\geometry{left=2in,right=2in}
\begin{document}
<<keep.source=TRUE>>=
op <- options(width = 65, digits = 3)
ddataframe <- data.frame(AAAAA = 1:10,
	BBBBB = factor(letters[1:2]),
	CCCCC = factor(LETTERS[1:5]),
	SSSSS = factor(paste("S", 1:10, sep = "")),
	RRRRR = rnorm(10))
mod1 <- lm(RRRRR ~ AAAAA + BBBBB + CCCCC + SSSSS,
	ddataframe)
summary(mod1)
@
\end{document}
I have attached the pd...