Displaying 1 result from an estimated 1 matches for "pathdist".
2007 Dec 06
0
alternatives to latex() or xtable()
An alternative solution that allows you to break it down by categories is in
the functions below. Comments/suggestions welcome and encouraged.
Note that much thanks is due to those who responded to an earlier post of
mine on a similar topic.
To use (assuming you have a data.frame falled pathDist with columns
distances (your numeric data of interest), Capacity, Surface, and SITE
(vectors of categories)):
ops=c(quote(mean),quote(median),quote(sd),quote(length))
ops.desc=list(mean="Mean",median="Median",sd="S.D.",length="N")
pathDist.indices=list
(Surfa...