Skip to content
Prev 305033 / 398506 Next

Producing a table with mean values

On 12-09-07 4:49 PM, Tinus Sonnekus wrote:
Something like this could work:

library(tables)
tabular( Seamount ~ (Pico + Nano + Micro)*mean, data=SChla)

There are lots of variations, e.g. if you want the size classes as rows 
and the Seamounts as columns,

tabular( (Pico + Nano + Micro) ~ Seamount*mean, data=SChla)

It will also output LaTeX tables if you ask for them.

Duncan Murdoch