/ #plot 

plot

*example of executing R and making a plot

library(ggplot2)
ggplot(diamonds, aes(x=carat, y=price, color=clarity)) + geom_point()