我想在十分位点标记我的 X 轴。我将 ggplot() 用于我绘制的帕累托图,默认情况下 X 轴标记为 0,33,66,100%(或可能是由于代码)。我已经使用了这段代码,但我不太清楚在哪里编辑它以获得十分位数:
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)