Displaying 4 results from an estimated 4 matches for "anystrings".
2010 Apr 13
2
.Fortran interface error
Hi all,
I'm preparing a package which uses .Fortran to interface a Fortran 95
function. This F95 function simply receives the name of a file from R,
opens this file and forwards its content to a F95 module, which, in turn,
makes the real computation. The F95 module is a pre-existing one and I'm
trying to use it in its actual state.
Thus, data transfer between R and this F95 module is
2003 Aug 24
2
setClass question
...uot; object: ", errors, sep = ""))
15: validObject(.Object)
14: .local(.Object, ...)
13: initialize(value, ...)
12: initialize(value, ...)
11: new("matrix.csr")
10: asMethod(object)
9: as(object, superClass)
8: validityMethod(as(object, superClass))
7: identical(x, TRUE)
6: anyStrings(validityMethod(as(object, superClass)))
5: validObject(.Object)
4: .local(.Object, ...)
3: initialize(value, ...)
2: initialize(value, ...)
1: new("matrix.diag.csr", ra = 1:3, ja = 1:3, ia = 1:4, dimension = as.integer(c(3,
3)))
which might be revelatory to some of you, but leaves...
2008 Jan 24
0
(lme4: lmer) mcmcsamp: Error in if (var(y) == 0)
...5% 50%
rolei:derivationI:log(dist.time) -2.19615 -2.19615
-2.19615
roler:derivationI:log(dist.time) -1.36876 -1.36876
-1.36876
> traceback()
11: asMethod(object)
10: as(object, superClass)
9: validityMethod(as(object, superClass))
8: identical(x, TRUE)
7: anyStrings(validityMethod(as(object, superClass)))
6: validObject(.Object)
5: initialize(value, ...)
4: initialize(value, ...)
3: new(if (is(object, "glmer")) "summary.glmer" else {
if (is(object, "lmer"))
"summary.lmer"
else "summary.me...
2015 May 28
3
S4 inheritance and old class
Hey everyone,
I would like to develop a package using S4 classes.
I have to define several S4 classes that inherits from each others as
follow:
# A <- B <- C <- D
I also would like to define .DollarNames methods for these class so, if I
have understood well, I also have to define an old class as follow:
# AOld <- A <- B <- C <- D
setOldClass(Classes = "AOld")