Displaying 1 result from an estimated 1 matches for "gencolnam".
Did you mean:
getcolnam
2007 Jun 05
2
biplot package
...s$u[,1:n.values] %*% s2
h = s2 %*% t(s$v[,1:n.values])
hl = t(h)
},
samples = {
g = s$u[,1:n.values] %*% s2
h = t(s$v[,1:n.values])
hl = t(h)
},
variables = {
g = s$u[,1:n.values]
h = s2 %*% t(s$v[,1:n.values])
hl = t(h)
})
gencolnames = paste('PC', 1:n.values, sep='')
rownames(g) = rownames
colnames(g) = gencolnames
rownames(hl) = colnames
colnames(hl) = gencolnames
coo = rbind(g, hl)
rownames(coo) = c(rownames, colnames)
colnames(coo) = gencolnames
cooplot = rbind(g, hl*...