Displaying 2 results from an estimated 2 matches for "neophite".
2000 Nov 11
2
problem using MASS corresp and mca functions
Hello,
I'm an absolute beginner with R and neophite in data analysis, so please bear
with me if I ask stupid question.
I'm trying to do a correspondence analysis using R and MASS corresp function,
but I get an error message which I'm unable to interpret:
> data(weblog)
> library(MASS)
> corresp(~ url + fromurl, data=weblog)
Error...
2009 Apr 21
1
Functions in lists or arrays?
...ograms, generating an *.R file. So for example, if I
try:
> t <- list()
> t[1] <- function(b) { b*2 }
Error in t[1] <- function(b) { :
cannot coerce type 'closure' to vector of type 'list'
Similar errors for arrays, and anything else I can think of. I'm an R
neophite, which likely shows. The
only way I seem to be able to do the above, is to generate unique names for
each function, and add
each name into a list, sort of like this:
# Register ourselves
models <- cbind(models, "Nasa_PART_Rules")
bounds <- cbind(bounds, "Nasa_PART_Bounds"...