Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 118
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