[Rd] error in chol2inv.Rd (PR#9033)

2006-06-24 Thread d . firth
Full_Name: David Firth Version: 2.3.1 OS: Linux Submission from: (NULL) (81.178.112.151) In chol2inv.Rd, where it says "The first \code{nc} columns" it presumably means "The first \code{size} columns"? Also in R-patched. __ R-devel@r-project.org maili

Re: [Rd] Bug in R-intro.html ? (PR#9028)

2006-06-24 Thread maechler
> "hueppop" == hueppop <[EMAIL PROTECTED]> > on Fri, 23 Jun 2006 17:45:59 +0200 (CEST) writes: hueppop> Full_Name: Ommo Hüppop Version: 2.0.1 OS: XP hueppop> Submission from: (NULL) (84.143.196.187) hueppop> Hi, hueppop> Presumably, I've found an error in hueppo

Re: [Rd] Ops.Date: promote characters to Dates?

2006-06-24 Thread Gabor Grothendieck
Note that the first argument still cannot be character since Ops.Date won't get dispatched in that case. On 6/24/06, Ben Bolker <[EMAIL PROTECTED]> wrote: > Ops.Date <- function (e1, e2) > { >if (nargs() == 1) >stop("unary ", .Generic, " not defined for Date objects") >boolean <-

[Rd] Ops.Date: promote characters to Dates?

2006-06-24 Thread Ben Bolker
Ops.Date <- function (e1, e2) { if (nargs() == 1) stop("unary ", .Generic, " not defined for Date objects") boolean <- switch(.Generic, "<" = , ">" = , "==" = , "!=" = , "<=" = , ">=" = TRUE, FALSE) if (!boolean) stop(.Generic, " not defined for Date objects")