Displaying 4 results from an estimated 4 matches for "3dnull".
Did you mean:
dnull
2008 Aug 07
1
Bug in format.default(): na.encode does not have any effect for (PR#12318)
...rmat.default() uses prettyNum(.I=
nternal(format(...)))
for formatting the logical, numeric, complex, ... classes. Simple tests (se=
e bellow) show that
.Internal(format()) does not obey the na.encode argument.
## Encode NA as "NA"
> .Internal(format(x=3Dc(1, NA), trim=3DFALSE, digits=3DNULL, nsmall=3D0, w=
idth=3DNULL, adj=3D1, na.encode=3DTRUE, scientific=3DNA))
[1] " 1" "NA"
## Do not encode NA as "NA"
> .Internal(format(x=3Dc(1, NA), trim=3DFALSE, digits=3DNULL, nsmall=3D0, w=
idth=3DNULL, adj=3D1, na.encode=3DFALSE, scientific=3DNA))
[1] " 1&...
2009 Nov 30
1
Bug in R evaluating a huge instruction (PR#14096)
...), so I post=20
my message here.
I am trying to use the Morris function from the sensitivity package (but =
that is not the problem). I created a (big) instruction that should=20
generate a morris object in which there is a data.frame i am interested=20
in. My instruction is :
a<-morris(model=3DNULL,factors=3Dc("PecheAmateurs=20
d=E9cembre.proportionMetier","PechePetitMetierMer=20
mai.proportionMetier","PecheAmateurs=20
mai.proportionMetier","PecheChalutiere=20
janvier.minInactivityDays","PechePetitMetierEtang=20
octobre.minInactivityDays",&quo...
2006 Oct 31
0
about mantelhaen.test (PR#7779)
...follows:
------
# takes a 3-d array x, scores for rows, and scores for columns
# runs nominal-nominal, ordinal-nominal, and ordinal-ordinal CMH tests
# this function is based on one posted at
# http://bugs.r-project.org/cgi-bin/R/wishlist?id=3D7779;user=3Dguest
mh.test <- function(x, row_scores=3DNULL, col_scores=3DNULL) {
if (length(dim(x)) !=3D 3){
stop("x must be a 3 dimensional array")
}
if (any(apply(x, 3, sum) < 2)){
stop("sample size in each stratum must be > 1")
}
I <- dim(x)[1]; J <- dim(x)[2]; K <- dim(x)[3]...
1997 Dec 08
3
R-alpha: Bug in tapply in the Windows version of September
The function tapply is not working in the Windows version of R=20
(Version 0.50 Beta (Sept 29, 1997))
In
tapply <- function (x, INDEX, FUN=3DNULL, simplify=3DTRUE, ...)=20
...
The part:
if (simplify && all(unlist(lapply(ans, length)) =3D=3D 1)) {
ans <- unlist(ans, recursive =3D FALSE)
names(ans)<-namelist[[1]]
return(ans)
}
should be replaced by
if (simplify && all(unlist(lapply(ans, length)) =3D=3D 1)) {...