how can I make stacked barplot with ggplot2

寵の児 提交于 2019-11-28 06:57:25

问题


Hi I wanted to make a stacked barplot using ggplot2 with below data

Chr NonSyn_Snps Total_exonic_Snps
A01 9217    13725
A02 6226    9133
A03 14888   21531
A04 5272    7482
A05 4489    6608
A06 8298    12212
A07 6351    9368
A08 3737    5592
A09 12429   18119
A10 7165    10525

Basically i want to stack NonSyn_Snps and Total_exonic_Snps for each chromosome but unfortunately i cannot.

This is what i tried so far with no luck

ggplot(Chr.df_mod, aes(Chr, Total_exonic_Snps, fill = NonSyn_Snps)) + geom_bar(stat = "identity", colour = "white") + xlab("Chromosome") + ylab("Number of SNPs")

I am getting plot but not stacked one.

Can someone please help me troubleshoot this.

Thanks Upendra


回答1:


The ggplot idiom works best with long data rather than wide data. You need to melt your wide data frame into long format to benefit from many of ggplot's options.

# get data
dat <- read.table(text = "Chr NonSyn_Snps Total_exonic_Snps
A01 9217    13725
A02 6226    9133
                  A03 14888   21531
                  A04 5272    7482
                  A05 4489    6608
                  A06 8298    12212
                  A07 6351    9368
                  A08 3737    5592
                  A09 12429   18119
                  A10 7165    10525", header= TRUE)


# load libraries
require(ggplot2)
require(reshape2)

# melt data from wide to long
dat_m <- melt(dat)

# plot
ggplot(dat_m, aes(Chr, value, fill = variable)) + 
  geom_bar(stat = "identity") + 
  xlab("Chromosome") + 
  ylab("Number of SNPs")



来源:https://stackoverflow.com/questions/17415900/how-can-i-make-stacked-barplot-with-ggplot2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!