New test of a plot


(6 October 2021)

Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Ctrl+Shift+Enter.

plot(cars)

library(ggplot2)

ggplot(cars, aes(x = speed, y = dist )) +
  geom_point()