myFrame


install.packages('ggplot2') 


library(ggplot2)

gg <- ggplot(diamonds, aes(x=carat, y=price)) 

gg + geom_point()