Displaying 2 results from an estimated 2 matches for "withnas".
Did you mean:
withna
2000 Aug 23
0
2 Bugs in na.omit.default() (PR#641)
# BUG 1: returns empty vector if no NAs present
> nona <- 1:10
> na.omit(nona)
numeric(0)
na.omit.default() has two lines where
object[-omit]
is used, where omit represents positions of NAs and thus without NAs
omit = numeric(0)
and since
-numeric(0) = numeric(0)
object[-omit] = numeric(0)
It looks like an earlier version of na.omit.default had 'omit' defined as
2006 Dec 22
0
plot.mids / Error in plot.new() : figure margins too large
...uuren (2000)
> http://web.inter.nl.net/users/S.van.Buuren/mi/docs/Manual.pdf
> page 17, if there are many variables (~80) with NAs included?
> mice runs well, but the plot is not possible because it seems that there
> are too many variables.
>
> > imp.temp <- mice(data.withnas, m=5)
> > plot(imp.temp)
> Fehler in plot.new() : Grafikr?nder zu gro?
> = error in plot.new(): boundaries of graphics too big/huge
>
> Is it possible to run the plot() sequentially, so that only a selected
> part of the variables are plotted?
> Of course I can run mi...