Basically I am using a variable on my dataset to alter the size of the data points of my plot. When I use this variable R automatically uses 3 division: 100,000 200,000 300,000. Nevertheless the majority of my data has a variable less than 100,000 and the row that has 300,000 as a value, makes jumps between size too large making the graph not show accurate information.
Is there a way to define the number of divisions of size. What I have tried is changing the scale with the following code:
scale_size_continuous(range = c(5,10))
This just modifies the size of all dots, I do not want to change the scale, but I want to do is introduce more sizes. Is there any way I can manually modify this parameter.