ggplot2 in R notebooks(R)
library(ggplot2)
ggplot(diamonds, aes(carat, price, color = color, group = 1)) + geom_point(alpha = 0.3) + stat_smooth()
ggplot(mpg, aes(displ, hwy, colour = class)) + geom_point()