I have a simple bar graph which x is the levels of a category variable 1 - 9, and z is the count of each level. But there is a distance at the bottom (marked in red), which I want to remove. I wasn't able to find helpful tips online. Could anyone help me with it? Thank you in advance!
ggplot(data = my_data,aes(x = factor(degree)), stat = "count") + geom_bar()