library(ggplot2)
data <- c(1,0,1,1,0)
qplot(data) + geom_bar() + labs(x="Merged", y="Count")
this generates:
However, I wanted to generate a boxplot, and have no use for the values 0.25, 0.50, and 0.75 since they cannot exist in this data. I simply want two bars for 0 and 1 indicating the count of each value in the dataset. How can I accomplish this?

