Displaying 4 results from an estimated 4 matches for "bystats".
Did you mean:
bstats
2002 May 14
2
R CMD check
I am unclear on whether to run R CMD check pgkname as user or as root on Linux. When running as user, after all the latex, html, and man files are created, I get the following error message:
Rdconv(): Couldn't open '': Permission denied
Has anyone dealt with that message?
When I run R CMD check a second time, all latex, html, etc. are recreated which takes quite a while. Is there
2006 Oct 08
2
latex and anova.lme problem
..., txtE2.lme1))
[1] "anova.lme" "data.frame"
A bit more information (which I don't know is relevant):
> methods(anova.lme)
no methods were found
Warning message:
function 'anova.lme' appears not to be generic in: methods(anova.lme)
> methods(latex)
[1] latex.bystats latex.bystats2
latex.default
[4] latex.describe latex.describe.single
latex.function
[7] latex.list latex.summary.formula.cross
latex.summary.formula.response
[10] latex.summary.formula.reverse
****************...
2010 Dec 02
1
latex tables for 3+ dimensional tables/arrays
...e
\end{tabular}
\end{center}
\end{table}
>
The author of xtable tells me that only 2-way tables are presently
implemented, and, while I would normally
look to Hmisc for all things LaTeX, I don't find anything useful there:
> library(Hmisc)
> methods("latex")
[1] latex.bystats latex.bystats2
[3] latex.default latex.describe
[5] latex.describe.single latex.function
[7] latex.list latex.responseSummary
[9] latex.summary.formula.cross latex.summary.formula.response
[11] latex.summary.formula.reverse...
2006 May 01
1
code for latex function in Hmisc
Forgive my ignorance, but how I can take a look at the code for the
latex function in the Hmisc library?
I tried just typing "latex" but all I got was this:
> latex
function (object, title = first.word(deparse(substitute(object))),
...)
{
if (!length(oldClass(object)))
oldClass(object) <- data.class(object)
UseMethod("latex")
}
What should I do?