A boxplot is a convenient little plot that brings up the “essentials” about your sample. In R, a boxplot can be built within seconds using the function boxplot().

Here is a simple example:

my.dataset <- c(1,2,3,4,5,6,7,8,9,10)
boxplot(my.dataset)

Not sure what this boxplot means? Check out the illustration above. The plot contains a box with whiskers on top and below, as well as a “thick line somehow in the middle”. That thick line represents the median of the sample. The bottom and top of the box are defined by the first and third quartiles Q1 and Q3, respectively. The whole box thus frames the interquartile range (IQR). The whiskers below and on top of the box correspond to the minimum and maximum values if your sample is free for outliers. Otherwise, the function boxplot() defines their length as equal to 1.5 times the IQR. If any, outliers will be identified using open circles (not represented here).