I made field plots for the start values ββof three different groups using the box-plot function in R, for example:
boxplot(onset ~ group, data = pulse.dat, range = 0, col = "lightblue")
However, I want to see how the data looks without a range, so I want to create a box without a mustache. I will also not mind any graph as long as it displays the median, 25th and 75th quartiles for each of the three groups.
Does anyone know how I can do this in R?
source share