From 174af0cca6eca87ca74e3c7f4a4c63c340fb03e4 Mon Sep 17 00:00:00 2001 From: Sajjad Ghaffarinasabsharabiani <ghaffas@hhu.de> Date: Mon, 6 Mar 2023 12:30:57 +0000 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f4deb36..d212c1a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ 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)) + +df <- data.frame(x=1:10,y=rnorm(10)) ggplot(df,aes(x=x,y=y))+ geom_point()+ -- GitLab