Displaying 2 results from an estimated 2 matches for "nognome".
2002 Feb 22
2
R gnome produces errors?: a clue!
...ght be a clue to understand
the strange behaviour of lda in R --gui="gnome":
in R --vanilla:
library(MASS)
load("mod23puriflda.rda")
> a <- lda.default(x=mod23puriflda[,2:5],grouping=mod23puriflda[,6],CV=F)
works fine. I save lda.default as a local rda file:
> milda.nognome <- lda.default
> save(milda.nognome,file="milda.nognome.rda")
Then in R --vanilla --gui="gnome"
library(MASS)
load("mod23puriflda.rda")
> a
<-lda.default(x=mod23puriflda[,2:5],grouping=mod23puriflda[,6],CV=F,method="moment")
Error in lda.defaul...
2002 Feb 22
2
R gnome and lda: found the difference
Saving lda.default as text files from within gui="none" and from within
gui="gnome"
and comparing afterwards with diff, I get:
alobo at humboldt:> diff lda.default.gnome.txt lda.default.nognome.txt
1c1
< function (x, grouping, prior = proportions, tol = 1, method =
c("moment",
---
> function (x, grouping, prior = proportions, tol = 1e-04, method =
c("moment",
61c61
< if (all(abs(w - w0) < 0,01))
---
> if (all(abs(w - w0) < 0.01...