让我们加载基因表达数据。
library(RTCGA.mRNA)
?mRNA
看一下BRCA.mRNA数据集的大小,显示几行和几列。
dim(BRCA.mRNA)
BRCA.mRNA[1:5, 1:5]
# Take the mRNA data
BRCA.mRNA %>%
# then make it a tibble (nice printing while debugging)
as_tibble(
让我们加载基因表达数据。
library(RTCGA.mRNA)
?mRNA
看一下BRCA.mRNA数据集的大小,显示几行和几列。
dim(BRCA.mRNA)
BRCA.mRNA[1:5, 1:5]
# Take the mRNA data
BRCA.mRNA %>%
# then make it a tibble (nice printing while debugging)
as_tibble(