Code
library(tidyverse)
data.frame(x = c(0, 200),
y = c(-2000, 5000)) %>%
ggplot(aes(x, y)) +
geom_blank() + # Draws an empty canvas with scales
geom_abline(intercept, slope) +
coord_cartesian(xlim = c(120, 180),
ylim = c(1000, 5000))