I regularly do all kinds of scatter plots in R using the plot command.
plot
Sometimes both, sometimes only one of the plot axes is labelled in scientific not
Normally setting axis limit @ max of your variable is enough
a <- c(0:1000000) b <- c(0:1000000) plot(a, b, ylim = c(0, max(b)))