Answers for "ggplot2 graph in r"

R
1

ggplot2 graph in 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
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language