Is there a way to get the axes, with labels in the center of a ggplot2 plot, like a traditional graphing calculator? I\'ve looked through the docs and there doesn\'t seem to
A first approximation:
dat = data.frame(x = 1, y =1) p = ggplot(data = dat, aes(x=x, y=y)) + theme_bw() + geom_point(size = 5) + geom_hline(yintercept = 0) + geom_vline(xintercept = 0)
Adjust limits as per SlowLearner's answer.