library(ggplot2)
d <- mtcars
d$x <- rownames(mtcars)
ggplot(d, aes(x, mpg)) + geom_point()

plot of chunk unnamed-chunk-1

ggplot(d, aes(x, mpg)) + geom_point() + theme(axis.text.x = element_text(angle = 90, 
    hjust = 1))

plot of chunk unnamed-chunk-1