Skip to content
Snippets Groups Projects
Commit 174af0cc authored by Sajjad Ghaffarinasabsharabiani's avatar Sajjad Ghaffarinasabsharabiani
Browse files

Update README.md

parent c9df8c12
No related branches found
No related tags found
No related merge requests found
......@@ -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()+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment