From c8e98c039958f1fc4960fe69e49aaf0b5e50e171 Mon Sep 17 00:00:00 2001 From: Dirk Sarpe <dsarpe@posteo.de> Date: Mon, 18 Sep 2017 10:13:48 +0200 Subject: [PATCH] add small plotting example can be used to show syntax highlighting and suggestions as well --- plot.r | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 plot.r diff --git a/plot.r b/plot.r new file mode 100644 index 0000000..b4b9f38 --- /dev/null +++ b/plot.r @@ -0,0 +1,4 @@ +library(ggplot2) +ggplot(iris) + aes(x = Sepal.Length, y = Sepal.Width, colour = Species) + + geom <- point() + + geom <- smooth(method = "lm", se = FALSE) -- GitLab