Displaying 2 results from an estimated 2 matches for "order4".
Did you mean:
order
2004 Oct 20
0
heatmap.2 ordering & color key
...g 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,21,14,18,22,15,19,23,16,20,24 which I'm
completely confused about as I'm...
2001 Jun 06
1
ppr, number of terms, and data ordering
....245536824
ilogage 0.969387264
Coefficients of ridge terms:
term 1 term 2 term 3 term 4 term 5 term 6 term 7 term 8
19688.36 46872.70 48959.17 61038.99 50865.32 41610.74 29375.41 25582.86
term 9 term 10 term 11
51523.50 34629.45 30547.80
>
######DATASET2, IDNUM ORDER
> order4 <- order(dataset2$idnum)
> reorder2 <- dataset2[order4,]
> pprfile.ppr <- ppr(
+ award~
+ ilogemp+ilogage,
+ data=reorder2, nterms=1, max.terms=40, optlevel=3, bass=0
+ )
> pprfile.ppr
Call:
ppr.formula(formula = award ~ ilogem...