Использование ggplot:
library(ggplot2)
ggplot(df, aes(x = as.factor(year), y = exp, fill = as.factor(status))) +
geom_col() +
labs(y = "experience", x = "Year", fill = "Status")
введите описание изображения здесь
Данные
df <- structure(list(year = c(2011L, 2011L, 2012L, 2012L, 2013L, 2013L
), status = c(0L, 1L, 0L, 1L, 0L, 1L), exp = c(8.4, 6.66, 7.49,
5.78, 6.48, 4.51)), class = "data.frame", row.names = c("1",
"2", "3", "4", "5", "6"))