Displaying 2 results from an estimated 2 matches for "mod23puriflda".
2002 Feb 22
2
R gnome produces errors?: a clue!
I've got something that might 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(MAS...
2002 Feb 19
1
Rgnome produces errors?
I'm totally confused by the following:
1. I start R simply by typing R on the shell
and the following works with no problems:
> library(MASS)
> a <- lda(x=mod23puriflda[,2:5],grouping=mod23puriflda[,6],CV=F)
> summary(a)
Length Class Mode
prior 23 -none- numeric
counts 23 -none- numeric
means 92 -none- numeric
scaling 16 -none- numeric
lev 23 -none- character
svd 4 -none- numeric
N 1 -none- numeric
call...