I am making a ggplot for a data which shows two parameters Alcohol Consumption level vs Annual Income of Family.
There are many data points in a specific region of the graph, so I want to increase the size of these points compared to other regions where there are fewer data points. I don't know what to enter in the aes parameter in geom_point for this.
g <- ggplot(data = matpor, mapping = aes(AIncome, AConsumption))
g <- g + geom_point(data = matpor, aes())
g