Displaying 2 results from an estimated 2 matches for "dalgaard_at_biostat".
2004 Dec 01
3
core dump during make check when building 64-bit R on Solaris8/9
Hi,
After reading some of the posting in this list, I came across this
posting from:
From: Peter Dalgaard <p.dalgaard_at_biostat.ku.dk>
Date: Fri 29 Oct 2004 - 08:02:40 EST
Replying to Re: [R] Errors during make check
He described a problem similar to mine, that build 64-bit R (I am
building R version 2.0.1) with sunperf library gives a core dump during
make check. So I configured my build without the sunperf (BLAS and...
2005 Feb 18
2
bivariate empirical cdf
Dear R users,
I'm trying to write a small function in order to compute empirical cumulative density function.All seems to work but when I try to plot the function, I always get error messages.
This is the function I use
mecdf<-function(u,v,z) {
u=sort(u)
v=sort(v)
n=length(u)
nb=0
for (i in seq(1,n)) {
if (u[i]<z & v[i]<z) {
nb<-nb+1
}
}
nb=nb/n