plotting a scatter plot with wide range data

I am trying to plot two columns. The first one shows the number of likes, and the second shows the number of shares. I want to show the relationship between the number of shares when people actually like a post.

The problem is my likes count starts from 1 to 1 million, and the shares count start from 5 to 37000.

When I use this code to plot a scatter plot. It looks messy.

plot(as.numeric(topMedia$shares_count),as.numeric(topMedia$likes_count))

what would be a better way to show the relationship between those values?
Thanks .

Hi!

To help us help you, could you please prepare a reproducible example (reprex) illustrating your issue? Please have a look at this guide, to see how to create one:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.