From 095a4b55fa927b8e4e12669501ae4427975a16d3 Mon Sep 17 00:00:00 2001 From: da394mevy <da394mevy@rstudio01.sc.uni-leipzig.de> Date: Mon, 18 Sep 2017 11:25:50 +0200 Subject: [PATCH] fix syntax error caused by autocompletion --- plot.r | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plot.r b/plot.r index b4b9f38..5455e94 100644 --- a/plot.r +++ b/plot.r @@ -1,4 +1,6 @@ library(ggplot2) + +str(iris) ggplot(iris) + aes(x = Sepal.Length, y = Sepal.Width, colour = Species) + - geom <- point() + - geom <- smooth(method = "lm", se = FALSE) + geom_point() + + geom_smooth(method = "lm", se = FALSE) \ No newline at end of file -- GitLab