RplotThe values labels are occupying the same space in a way we can't read the graphic. How can I solve this? The only way I can think is to change the variable levels name itself, but the dataset is huge and I don't know how to do it either. Is there a way to change the labels in the axis?
ggplot(data = brfss2013, aes(x = X_smoker3, y = educa), bins = 10) + labs(x = "Computed Smoking Status", y = "Education level") + geom_bar(stat='identity', col = "darkorange", fill = "darkorange")