Skip to content
Prev 172635 / 398502 Next

output formatting

I'm guessing you processed a data frame with the 'by' function.
Rather than restructuring the by output, try using a different
function on your data frame.  For example
tension wool breaks.sum
1       L    A        401
2       L    B        254
3       M    A        216
4       M    B        259
5       H    A        221
6       H    B        169

as opposed to
: L
: A
[1] 401
------------------------------------------------------------------------------
: M
: A
[1] 216
------------------------------------------------------------------------------
: H
: A
[1] 221
------------------------------------------------------------------------------
: L
: B
[1] 254
------------------------------------------------------------------------------
: M
: B
[1] 259
------------------------------------------------------------------------------
: H
: B
[1] 169


hth,
Kingsford Jones
On Wed, Mar 4, 2009 at 8:17 PM, Pele <drdionc at yahoo.com> wrote: