diff --git a/README.md b/README.md index f4deb369f6804c6f137066b7fcc1eab28bcf8114..d212c1ac10ac23d29689e0504ccf7dfcb0b1227f 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()+