Displaying 3 results from an estimated 3 matches for "pniklaus".
Did you mean:
niklaus
2006 Dec 18
2
Error compiling on HP-UX
...lp.
I am trying to compile R-2.4.0 on a HP-UX system:
./configure
MAKE=gmake --prefix=$HOME --without-x --without-tcltk --disable-R-profiling --without-readline --disable-multibyte
R is now configured for ia64-hp-hpux11.23
Source directory: .
Installation directory: /home/agrl/pniklaus
C compiler: gcc -g -O2 -std=gnu99
Fortran 77 compiler: f90 -g
C++ compiler: g++ -g -O2
Fortran 90/95 compiler: f90 -g
Interfaces supported:
External libraries:
Additional capabilities: NLS
Options enabled: shared BLAS
Recomme...
2008 Sep 23
5
xyplot problem
Hi all,
I am trying to produce some panels with dots in an X/Y plane where the
diameter of the dots indicates a Z value (like e.g. earthquake maps where dot
sizes indicate magnitudes and X/Y the location).
This works fine with xyplot, e.g.:
xyplot(1:3~1:3,cex=1:3,pch=16)
However, when I do this with a panel variable, e.g.:
x<-rep(1:3,5)
y <- rep(1:3,5)
sz <- rep(1:5,each=3)
grp
2009 Jan 07
2
NA and NaN question
Hi all,
I ran into a problem in some of my code that could be traced back to 'mean'
sometimes returning NA and sometimes NaN, depending on the value of na.rm:
> mean(c())
[1] NA
> mean(c(NA),na.rm=T)
[1] NaN
However, I don't understand the reasoning behind this and would appreciate and
explanation.
I understand that the mean of an empty vector is not definied, but I