作者:Zuguang Gu8
    翻译:Steven Shen
    原文:https://jokergoo.github.io/ComplexHeatmap-reference/book/a-list-of-heatmaps.html#gap-between-heatmaps


    ht_gap controls the space between heatmaps. The value can be a single unit or a vector of units.

    1. ht1 = Heatmap(mat1, name = "rnorm", col = col_rnorm)
    2. ht2 = Heatmap(mat2, name = "runif", col = col_runif)
    3. ht3 = Heatmap(le, name = "letters", col = col_letters)
    4. ht_list = ht1 + ht2 + ht3
    5. draw(ht_list, ht_gap = unit(1, "cm"))

    4.3 热图之间的间隔 - 图1

    draw(ht_list, ht_gap = unit(c(3, 10), "mm"))
    

    4.3 热图之间的间隔 - 图2