我正在使用ggplot2制作一个箱线图,图中显示了各个数据点。但是出于某种原因,我最终得到了两种不同的磅值。
我希望我的所有积分都是大小= 0.8。我究竟做错了什么?
这是我的代码:
png(paste("/directory/", hgnc_symbol, "_", curr_gene, ".png", sep=""),
width=4, height=3, pointsize=1, units="in", res=300)
print({
barplot <-
ggplot(curr_data, aes(x = condition, y = tpm, fill=condition)) +
geom_boxplot() +
stat_boxplot(geom ='errorbar') +
geom_jitter(size=0.8) +
guides(fill=FALSE) +
theme_bw() +
labs(title=paste(hgnc_symbol, "_", curr_gene, sep="")) +
labs(x="condition") + labs(y="TPM") +
theme(text = element_text(size=5),
axis.text.x = element_text(angle = 90, hjust = 1, size=6))
})
dev.off()