I want to label my X-axis at the decile points. I am using the ggplot() for the pareto chart I have drawn and by default the X-axis is labelled at 0,33,66,100 percent (or may be due to code). I have used this code but I don't have much idea where to edit it to get the decile points:
pareto<-ggplot(data=cummulative,
aes(x=seq(1,length(cummulative$Frequency)),y=Cum.Percent.,group=1)) + geom_line(colour="red", size=1) + theme_classic() + theme(axis.text.x = element_text(angle = 75, hjust = 1, size=8)) + labs(x="Customer",y="Product Share (%)") +ggtitle("Pareto Chart") +ylim(0,100.1)
print(pareto)