I wonder how I can customize the labels on x/y axis to the row/column names in the distance matrix I used in permutation image plot. Thanks!
library("seriation")
dm <- data.frame(matrix(1:100, nrow = 10))
colnames(dm) <- c("a", "b", "c", "d", "e", "f", "g", "h", "i", "j")
rownames(dm) <- c("a", "b", "c", "d", "e", "f", "g", "h", "i", "j")
dt <- as.dist(dm)
ser <- seriate(dt, method = "MDS")
pimage(dt, ser, colorkey=TRUE)
I want to use "a", "b", "c" as the labels on both axis.
p.s. The cell labels were properly displayed when the number of cells is small (e.g., 9 cells), but the labels were hidden when there are more cells, like the example above.
You can sort the values in the object
ser
:The plot: