Displaying 2 results from an estimated 2 matches for "order3".
Did you mean:
order
2004 Oct 20
0
heatmap.2 ordering & color key
...rder2 <- c(24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1)
using the command:
heatmap.2(tmatrix, clusteredmatrixasdendrogram, col=bluered600,
dendrogram="column", scale="none", trace="none", Rowv=order)
however If I start mixing the numbers up e.g:
order3 <- c(1,4,7,10,2,5,8,11,3,6,9,12,13,16,19,22,14,17,20,23,15,18,21,24)
or
order4 <- c(24,21,18,15,23,20,17,14,22,19,16,13,12,9,6,3,11,8,5,2,10,7,4,1)
The heatmap is reordered but NOT how I have specified:
The actual order it returns in either case is the same:
1,5,9,2,6,10,3,7,11,4,8,12,13,17...
2001 Jun 06
1
ppr, number of terms, and data ordering
...ge 0.68240941 -0.88675935 0.95705714 0.89878458
Coefficients of ridge terms:
term 1 term 2 term 3 term 4 term 5 term 6 term 7 term 8
53896.97 67906.48 33947.21 54279.37 61051.35 67225.76 65528.85 60914.63
term 9 term 10
58372.10 86302.62
>
######DATASET1, IDNUM ORDER
> order3 <- order(dataset1$idnum)
> reorder1 <- dataset1[order3,]
> pprfile.ppr <- ppr(
+ award~
+ ilogemp+ilogage,
+ data=reorder1, nterms=1, max.terms=40, optlevel=3, bass=0
+ )
> pprfile.ppr
Call:
ppr.formula(formula = award ~ ilogem...