自学内容网 自学内容网

科研绘图系列:R语言组合热图和散点图

介绍

热图展示参与者的属性,散点图表示样本的时间跨度。

加载R包

library(tidyverse)library(ComplexHeatmap)library(circlize)library(cowplot)

导入数据

数据可从以下链接下载(画图所需要的所有数据):

  • 百度云盘链接: https://pan.baidu.com/s/1iEE9seTLdrrC3WDHJytvIQ

  • 提取码: yvf5

load("figure1ab.RData")

数据预处理

tumortype_order <- tmn_meta_data$dx1_tumortype %>% 
  table %>% sort %>% names
patient_order <- with(tmn_meta_data, setNames(dx1_tumortype, upn)) %>% 
  .[order(match(., tumortype_order))] %>% names

tmn_meta_data_processed <- tmn_meta_data %>%
  mutate(upn = factor(upn, l

原文地址:https://blog.csdn.net/H20230717/article/details/140660869

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!