I'd like to create a showing the degree of concentration of resources creation among the users of a web application. The plot would have % of resources on the y axis, and % (percentile?) of users on the x axis. This feels like a cumulative distribution, but my experiments with the empirical cdf in the stats package aren't getting me what I want, because that gives me the % of resources y-axis, but the x axis is a scale from 1 to the number of users.
What I've done is follow the example plot(cdf(user_counts)) where user_counts is a list of resources created per user.
Does anyone know a better way to tackle this?