I have a data file with 4 columns. but the number of rows for each column is different. I want to make a box plot using a command like this:
ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() + stat_summary(fun.y=mean, colour="darkred", geom="point",
shape=18, size=3,show_guide = FALSE)
but due diffent number of rows per column, it gives error. do you guys know how to that?