Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for Support and Testing.

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Views: 137
Image: ubuntu2004
Kernel: R (system-wide)

Simple example using ggplot2 in CoCalc...

library("ggplot2") age <- c(25, 30, 56) gender <- c("male", "female", "male") weight <- c(160, 110, 220) mydata <- data.frame(age,gender,weight) ggplot(mydata, aes(age,weight))+ geom_point()
Image in a Jupyter notebook