Currently I am doing some cumulative distribution plot using R and I tried to set x-axis with decreasing power values (such as 10000,1000,100,10,1) in equal sizes but I failed:
n<-ceiling(max(test))
qplot(1:n, ecdf(test)(1:n), geom="point",xlab="check-ins",
ylab="Pr(X>=x)")+ geom_step()
+scale_x_reverse(breaks=c(10000,1000,100,10,1))
+scale_shape_manual(values=c(15,19))
It seems that the output has large interval for 10000, then all the other 4 values are left in the small right size of x-axis together. Does anyone knows how to set x-axis value with different intervals in equal sizes? Many Thx.