3
我在R中有一個數據框。在每個數據框中有8個變量。barplot()基於列中類別數的不同顏色的灰色條紋
我想創建一個barplot,我想根據一個特定變量中的值爲條分配不同的灰度陰影。
這是我做了一個barplot:
barplot(x$cov, names.arg = x$exon,
xlab = x$gene[1],
ylab = "read depth" ,
border = gray.colors(???))
可變外顯子組成的整數。例如:
0 0 0 0 1 1 1 2 2 3 3 3 3 4 4 4
所以我希望所有的欄,其中$exon = 0
是在灰色 所有欄,其中$exon = 1
在灰色的另一種顏色一個影等...
能有人給我是一隻手?