本文主要是介绍R语言做箱形图,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
R语言做箱形图
library(ggplot2)# loading data set and storing it in ds variable
ds <- read.csv("csv文件路径", header = TRUE)crop3<-ggplot(ds, aes(x = Source, y = Proportional_contribution, fill = Source)) + geom_boxplot(outlier.shape = NA) #隐藏异常点不显示
#+ geom_jitter(position=position_jitter(0.2)) 显示所有的点#设置每个box的颜色
crop3+scale_fill_manual(values=c("red", "yellow", "blue","green","purple"))
这篇关于R语言做箱形图的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!