Draw ggplot2 Plot with Lines & Points in R (Example) | Add Scatterplot Line | geom_line & geom_point

preview_player
Показать описание
R code of this video:

y = c(1, 7, 4, 1, 2))

library("ggplot2")

ggplot(data, aes(x, y)) + # Draw ggplot2 plot
geom_line() +
geom_point()

Follow me on Social Media:
Рекомендации по теме