Using ggplot to construct proportional-area characters seems to require using sqrt() to achieve true proportionality:
require(ggplot2) t <- data.frame(x=rep(c(1:5),5), y=rep(c(1:5),each=5), s=round(seq(1,100,length.out=25))) t p <- ggplot(data=t, aes(x=x,y=y))

As you can see, these labels are rooted when I need them to show the source data. We tried to play with the scale_size parameters, but nothing works. Does anyone know about this, or maybe an obscure setting to achieve a proportional display of the size of the area?
Thanks in advance.
geotheory
source share