graphique ggplot2 dans r

ggplot(data = table_name, aes(x = column1, y = column2)) + geom_point()
#The function after the '+' is the type of graph. geom_point() is a scatter plot
Kwams