From 852156d8bf4c1a7291a6fbea31aa5fc97d762ac6 Mon Sep 17 00:00:00 2001
From: Sajjad Ghaffarinasabsharabiani <ghaffas@hhu.de>
Date: Mon, 6 Mar 2023 12:42:02 +0000
Subject: [PATCH] Update README.md

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b5c7f14..d66b53b 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ source("https://gitlab.cs.uni-duesseldorf.de/ghaffarinasabsharabiani/ccb_theme/-
 
 #line chart with points
 #Here, "data" represents the data frame you want to plot, and "x" and "y" represent the variables you want to plot on the x and y #axes, respectively.
-#The ellipsis (...) represents any other ggplot2 code you want to add to customize your plot.
+
 
 df <- data.frame(x=1:10,y=rnorm(10))
 
@@ -28,7 +28,7 @@ ggplot(df,aes(x=x,y=y))+
   geom_point()+
   geom_line(linewidth=1.5,color=mycolor[1])+
   CCB_plot_style()+
-  scale_color_manual(values = mycolor)+ ...
+  scale_color_manual(values = mycolor)
 
 
 
-- 
GitLab