做箱专题

R语言做箱形图

R语言做箱形图 library(ggplot2)# loading data set and storing it in ds variableds <- read.csv("csv文件路径", header = TRUE)crop3<-ggplot(ds, aes(x = Source, y = Proportional_contribution, fill = Source)) + geo