Displaying 1 result from an estimated 1 matches for "percentsmatrix".
2002 Jun 21
1
naming things in functions
...ep(clusters[[k]]) ) #
separate data into individual clusters
names(sepclusters)[k] = paste(
deparse(substitute(datamat)), j, ".", i, sep = "")
pL = PercentsMat( sepclusters[[k]], pL, all )
}
PercentsMat <- function(clusters, percentsmatrix, ltype){
.
.
.
result = rbind( percentsmatrix, newpercents )
rnames = c(dimnames(percentsmatrix)[[1]],
deparse(substitute(clusters)))
numrows = length(rnames)
numcols = dim(result)[2]
}
res = matrix(result, nrow = numrows, ncol = numc...