1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
library(tidyHeatmap) library(tidyverse)
mtcars_tidy <- mtcars %>% as_tibble(rownames="Car name") %>% mutate_at(vars(-`Car name`, -hp, -vs), scale) %>% pivot_longer(cols = -c(`Car name`, hp, vs), names_to = "Property", values_to = "Value")
mtcars_tidy
mtcars_heatmap <- mtcars_tidy %>% heatmap(`Car name`, Property, Value ) %>% add_tile(hp)
mtcars_heatmap
mtcars_heatmap %>% save_pdf("mtcars_heatmap.pdf")
mtcars_tidy %>% group_by(vs) %>% heatmap(`Car name`, Property, Value ) %>% add_tile(hp)
mtcars_tidy %>% heatmap( `Car name`, Property, Value, palette_value = c("red", "white", "blue") )
mtcars_tidy %>% heatmap( `Car name`, Property, Value, palette_value = circlize::colorRamp2(c(-2, -1, 0, 1, 2), viridis::magma(5)) )
tidyHeatmap::pasilla %>% group_by(location, type) %>% heatmap( .column = sample, .row = symbol, .value = `count normalised adjusted` ) %>% add_tile(condition) %>% add_tile(activation)
pasilla_plus <- tidyHeatmap::pasilla %>% dplyr::mutate(act = activation) %>% tidyr::nest(data = -sample) %>% dplyr::mutate(size = rnorm(n(), 4,0.5)) %>% dplyr::mutate(age = runif(n(), 50, 200)) %>% tidyr::unnest(data)
pasilla_plus %>% heatmap( .column = sample, .row = symbol, .value = `count normalised adjusted` ) %>% add_tile(condition) %>% add_point(activation) %>% add_tile(act) %>% add_bar(size) %>% add_line(age)
|