I have the following data:
k <- c(294131, 734127, 817963)
ano <- c(1991, 2000, 2010)
dados <- data.frame(k, ano)
I'm doing it this way:
ggplot(dados,aes(x=ano,y=k)) + geom_point() + geom_line() + scale_x_continuous(limits=c(1991, 2010))
But the graph looks like this:
I wanted the years 2005 and 1995 not to appear, but 1991.