anno = SingleAnnotation(name = "test", value = c("a", "a", "a", "b", "b", "b"))
grid.newpage(); draw(anno, 1:5)
grid.newpage(); draw(anno, c(1, 4, 3, 5, 2))
anno = SingleAnnotation(value = c("a", "a", "a", "b", "b", "b"),
col = c("a" = "red", "b" = "blue"))
grid.newpage(); draw(anno, 1:5)
grid.newpage(); draw(anno, c(1, 4, 3, 5, 2))
anno = SingleAnnotation(value = c("a", "a", "a", "b", "b", "b"),
col = c("a" = "red", "b" = "blue"), which = "row")
grid.newpage(); draw(anno, 1:5)
anno = SingleAnnotation(value = 1:10)
grid.newpage(); draw(anno, 1:10)
require(circlize)
anno = SingleAnnotation(value = 1:10, col = colorRamp2(c(1, 10), c("blue", "red")))
grid.newpage(); draw(anno, 1:10)
anno = SingleAnnotation(fun = anno_points(1:10))
grid.newpage(); draw(anno, 1:10)
Run the code above in your browser using DataLab