Displaying 5 results from an estimated 5 matches for "proctime00".
Did you mean:
proctime
2006 May 03
2
cannot use fanny in package cluster (PR#8830)
...ns fine for function clara, but it does not work for function
fanny. I did the following things:
library(cluster)
set.seed(21)
x <- rbind(cbind(rnorm(10, 0, 0.5), rnorm(10, 0, 0.5)),
cbind(rnorm(15, 5, 0.5), rnorm(15, 5, 0.5)),
cbind(rnorm( 3,3.2,0.5), rnorm( 3,3.2,0.5)))
.proctime00 <- proc.time()
(fannyx <- fanny(x, 2))
and got the following messages:
Error in .Fortran("fanny", as.integer(n), as.integer(jp), k, x2, dis = dv, ;
Fortran function name not in DLL for package cluster
Any help.
Guan-Hua
2006 May 03
1
cannot use fanny in package cluster
...After install it, it runs fine for
function clara, but it does not work for function fanny. I did the following
things:
library(cluster)
set.seed(21)
x <- rbind(cbind(rnorm(10, 0, 0.5), rnorm(10, 0, 0.5)),cbind(rnorm(15, 5,
0.5), rnorm(15, 5, 0.5)),cbind(rnorm( 3,3.2,0.5), rnorm( 3,3.2,0.5)))
.proctime00 <- proc.time()
(fannyx <- fanny(x, 2))
and got the following messages:
Error in .Fortran("fanny", as.integer(n), as.integer(jp), k, x2, dis = dv, ;
Fortran function name not in DLL for package cluster
Any help.
Guan-Hua
2006 Jul 04
1
problem getting R 2.3.1 svn r38481 to pass make check-all
...s),4)),"\n")
+ }
+ rval <- (s < qdkwbound(sample.size,pthreshold))
+ if (print.result)
+ cat(c(" FAILED\n"," PASSED\n",)[rval+1])
+ if (stop.on.failure && !rval)
+ stop("dkwtest failed")
+ rval
+ }
>
> .proctime00 <- proc.time() # start timing
>
>
> dkwtest("binom",size = 1,prob = 0.2)
binom(size = 1, prob = 0.2) PASSED
[1] TRUE
> dkwtest("binom",size = 2,prob = 0.2)
binom(size = 2, prob = 0.2) PASSED
[1] TRUE
> dkwtest("binom",size = 100,prob = 0.2)
bino...
2003 Apr 02
2
RH 9 and R 1.7.0 Beta April 2 Latest
Hi all,
I am now up and running on RH 9. Went pretty smoothly (about 1 hour for
the clean install, though still doing some "tweaking".) There are
already about 40 update RPMS including a new kernel via RHN, which I
have installed.
Noticeable improvements since 8.0, especially with the new version of
XFree86, which yields sharper fonts that are now (with TTF fonts
installed)
2013 Apr 16
1
testInstalledBasic / testInstalledPackages
...the md5sums for the file
C:\Program Files\R\R-3.0.0\COPYING. Does this indicate a problem with
my installation? Looking at the file C:\Program Files\R\R-3.0.0\MD5,
leads me to suspect there might be an error in the test itself.
Thanks for the help!
-------------- next part --------------
> .proctime00 <- proc.time()
>
> isall.equal <- function(x,y)
+ typeof(x) == typeof(y) && is.logical(r <- all.equal(x,y, tol=0)) && r
>
> report <- function(x) {print(x); stopifnot(x)}
> options(error = expression(NULL)) # don't stop on error in batch
> ##~~~~...