Displaying 3 results from an estimated 3 matches for "dotnam".
Did you mean:
datnam
2007 Mar 02
1
--delete --force Won't Remove Directories With Dotnames
--delete --force Won't Remove Directories With Dotnames
rsync 2.6.9
Me, personally, I reckon this to be an irritant ... but perhaps (and having
thought about this a bit I decided it's a good chance) this is an
intentional and useful behaviour. But it's a nuisance if you call
your --partial-dir .partial, as I happen to do, since now if y...
2002 Oct 30
2
Building and installing packages with functions with names starting with (PR#2229)
Dear Coreteam,
I am getting closer to have some R-packages with interface to CoCo.
I use something like package.skeleton("CoCo", list = ls(all.names
= TRUE)) to also get my functions beginning with "." into the package.
Functions with names starting with "." are put OK into the package
during "R CMD build ...", but when R at "R INSTALL - d
2012 Mar 20
1
overriding "summary.default" or "summary.data.frame". How?
...(z, "class") <- c("table")
z
}
##
## want to override summary.data.frame, but confusing. When
## will R find my summary.data.frame, when will it find the one in base.
## use ... for numLevels, digits, alphaSort
summarize <- function(dat, ...)
{
dots <- list(...)
dotnames <- names(dots)
## next should give c("digits", "alphaSort")
nnames <- names(formals(summarizeNumerics))[-1L]
## names that need keeping if in dots:
keepnames <- dotnames %in% nnames
if( sum(keepnames) > 0 ) {
argList <- modifyList( list("dat&...