Improve default marker scaling in pointplot
The scale parameter in geoplot takes a scale and applies it to a marker. In the case of sankey (linewidth) and cartogram (xfact scaling) the manner and effect of the scaling is obvious. With pointplot, which uses ax.scatter, it is less so.
The ax.scatter function used by pointplot manages the size of the points plotted using the s parameter. If you marker is a circle, the s parameter is the area of the circle plotted; if it is some other marker, it is proportional to the bounding box on the shape. There is an StackOverflow thread on this subject that is a helpful reference on this subject.
The current implementation takes the dscale value of the point and squares it, e.g. uses the scale to determine the radius of the point. This is unsatisfactory because it has the effect of creating a perceptively exponential curve:

Notice how even though 8 mil is only 4x 2 mil, it appears to be an order of magnitude larger instead. That's because its area is actually 16x higher. And it's area, not radius, which matters to the viewer.
We should move to a different scaling for pointplot.