fork download
  1. read_csv("C:/Users/USER/Documents/test.csv", col_names = TRUE)
  2. install.packages('ggplot2')
  3. library(ggplot2)
  4. ggplot(ToothGrowth, aes(x=BABA, y=OD)) +
  5. geom_jitter(position=position_jitter(0.2))
  6. + stat_summary(fun.data=mean_sdl, mult=1, geom="pointrange", color="red")
Success #stdin #stdout #stderr 0.18s 183680KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: could not find function "read_csv"
Execution halted