📜  ggplot2 graph in - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:51:58.689000             🧑  作者: Mango

代码示例1
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