library(ggplot2) ggplot(iris_summary, aes(Sepal_Width, Sepal_Length_Mean, color = Species)) + geom_line(size = 1.2) + geom_errorbar(aes(ymin = Sepal_Length_Mean - stdev, ymax = Sepal_Length_Mean + stdev), width = 0.05) + geom_text(aes(label = count), vjust = -0.2, hjust = 1.2, color = "black") + theme(legend.position="top")
Use
sparklyr
in Databricks R notebooksThis notebook shows how to use sparklyr in Databricks notebooks.