I want to essentially create a balloon plot with ggplot2 where the size of the points are the frequency of data at a given coordinate.
ggplot2
Given the data.frame
Per @BenBolker's suggestion, I found a solution using stat_sum():
stat_sum()
ggplot(d, aes(value.x, value.y, size = ..n..)) + stat_sum()