Ulrike Grömping wrote, On 11/18/09 13:28:
> Duncan Murdoch schrieb:
>> Ulrike Groemping wrote:
>>>
>>> Duncan Murdoch-2 wrote:
>>>
Ulrike Groemping wrote:
> Dear developeRs,
>
> I have not found anything recent about how to link to a vignette or
> other
> document
Hi,
we noticed that since some time after Aug 24th the daily snapshots provided on
ftp://ftp.stat.math.ethz.ch/Software/R/
no longer have their default tarball file name
but dropped the date stamp, i.e. R-devel_.tar.bz2
Same for R-patched snapshots.
Could one of the maintainers please take a
Hi,
since a couple of days ago I see failures when using
R CMD INSTALL -l lib path-to-src/pkg.tar.gz
This occurs in automated library updating via a shell script and is caused by
the
immediate preceding call to leave an 00LOCK folder
even though the package installation of that call succeeded.
Prof Brian Ripley wrote:
> I think this should now work (one of several 'FIXME' issues addressed in
> the latest commit -- there are still some to go, but 2.9.0 is not due
> for 6 weeks).
tested and confirmed with R devel revision r48059;
more than one configure arguments are now handled correctly
Terry Therneau wrote:
> I'm working on the next version of coxme, one step of which is converting
> the bdsmatrix library from Splus to R. Actually, it is a conversion from
> S4 methods as first described in the Green book to S4 methods as they
> currently exist. Mostly it's going ok, but not
Hi,
trying
to install a package containing C code and requiring non-default configure
argument
settings the incantation (this has worked for R <= 2.8.1 on the same
architectures)
R CMD INSTALL --configure-args="--with-opt1 --with-opt2" packname
does always result in a warning
Warning: unknown
Hi,
x <- 1L
class(x) <- c("myInt", "integer")
is(x)
Error in inherits(x, "factor") :
argument "class2" is missing, with no default
The problem arises when is() is used with only one argument (object)
which has more than one class reported by class(object).
In the code is() does use variable "c
Prof Brian Ripley wrote:
> It would seem more logical to use x. Today it has the
> same contents as baseenv() (but a different enclosing env), but that may
> change.
>
> I do wonder why you are using this: the R code clearly doesn't. For
> base is not a normal namespace and is automatically im
Hi!
>getNamespaceExports("base")
Error in ls(NULL, all = TRUE) : using 'as.environment(NULL)' is defunct
getNamespaceExports
function (ns)
{
ns <- asNamespace(ns)
if (isBaseNamespace(ns))
ls(NULL, all = TRUE)
else ls(getNamespaceInfo(ns, "exports"), all = TRUE)
}
One p
Duncan Murdoch wrote:
> On 4/26/2007 9:53 AM, [EMAIL PROTECTED] wrote:
>> Hi!
>>
>> I'm puzzled by the return value of ifelse
>>
>> consider
>>
>> x<-integer(0)
>> ifelse(is(x, "character"), paste(x), x)
>> [1] NA
>
> The test evaluates to a length 1 logical vector containing FALSE. So
> ifelse(
Hi!
I'm puzzled by the return value of ifelse
consider
x<-integer(0)
ifelse(is(x, "character"), paste(x), x)
[1] NA
whereas
if (is(x, "character")) return(paste(x)) else x
[1] integer(0)
or
x<-integer(1)
ifelse(is(x, "character"), paste(x), x)
[1] 0
work as I had anticipated. Is this correct
Peter Dalgaard wrote:
> Matthias Burger wrote:
>> Hi Seth,
>>
>
[...]
>>
> I have just committed my variation of Seth's patch, so please check the
> current r-devel too.
For the record:
With R 2.5.0 devel (2007-03-18 r40854)
the issue I was concerned about has been resolved.
Thanks t
Hi,
after updating R 2.5.0 devel yesterday we today observed many new
unexpected failures in our daily package build and test system runs,
which can be traced to recent changes in the implementation in try()
(as noted in NEWS).
Investigating this new implementation I come across an issue in
con
13 matches
Mail list logo