search for: tperm

Displaying 2 results from an estimated 2 matches for "tperm".

Did you mean: term
2010 Dec 27
1
aperm() should retain class of input object
...; > # UCB is now an array, not a table > pairs(UCB, shade=TRUE) There were 50 or more warnings (use warnings() to see the first 50) > > # fix it, to get pairs.table > class(UCB) <- "table" > pairs(UCB, shade=TRUE) > Of course, I can define a new function, tperm() that does what I think should be the expected behavior: # aperm, for table objects tperm <- function(a, perm, resize = TRUE) { result <- aperm(a, per, resize) class(result) <- class(a) result } But I think it is more natural to include this functionality in aperm() it...
2008 Nov 30
1
normal-bracket50bracket-normal?
...et-normal" in help files for R packages including the following: * "mergeprepare" and "mergematrices" in a document dated March 3, 2004 by Richard Mott; the second contains "normal-bracket30bracket-normal". * "Fperm.fd" and "tperm.fd" in the "fda" package; these help pages were written primarily by Giles Hooker. * "compareDerivatives" in the "maxLik" package; this help page was written by Ott Toomet and me. What can we do to eliminate this nonsense comment? Co...