Displaying 1 result from an estimated 1 matches for "medianarea".
2005 Sep 08
1
Setting width in batch mode
...is appended.
The last break is right, while the others are too late.
Jonathan Dushoff
----------------------------------------------------------------------
bug.rnw
<<>>=
options(width=55)
data(state)
data.frame(area=mean(state.area), pop=mean(state.pop), hop=mean(state.area))
c(medianarea=median(state.area), medianpop=median(state.pop))
c(medianarea=median(median(state.area)), medianpop=median(state.pop))
@
----------------------------------------------------------------------
bug.tex
\begin{Schunk}
\begin{Sinput}
> options(width = 55)
> data(state)
> data.frame(area...