I making a boxplot, where I've named the x/y-axis something. The problem is that on the x-axis there is nothing besides the label I've made. I expected it that there would be 3, 5, 10 & 17 under the boxes.
I've used this command to make the boxplot:
boxplot(HE.JF$Q[HE.JF$houseId==3],
HE.JF$Q[HE.JF$houseId==5],
HE.JF$Q[HE.JF$houseId==10],
HE.JF$Q[HE.JF$houseId==17],
col = c("red", "blue", "yellow", "pink"),
ylab ="Heat consumption (kW)", xlab="House")